package com.ruoyi.domain.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.annotation.NumberFormatHandler;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class DocumentMaterialsVoLarge {
|
public int getNum() {
|
return num;
|
}
|
|
public void setNum(int num) {
|
this.num = num;
|
}
|
|
public String getRecordId() {
|
return recordId;
|
}
|
|
public void setRecordId(String recordId) {
|
this.recordId = recordId;
|
}
|
|
public Long getFileNumber() {
|
return fileNumber;
|
}
|
|
public void setFileNumber(Long fileNumber) {
|
this.fileNumber = fileNumber;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public String getDocumentNumber() {
|
return documentNumber;
|
}
|
|
public void setDocumentNumber(String documentNumber) {
|
this.documentNumber = documentNumber;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getAttachmentHistoryNumbers() {
|
return attachmentHistoryNumbers;
|
}
|
|
public void setAttachmentHistoryNumbers(String attachmentHistoryNumbers) {
|
this.attachmentHistoryNumbers = attachmentHistoryNumbers;
|
}
|
|
public Double getFileSize() {
|
return fileSize;
|
}
|
|
public void setFileSize(Double fileSize) {
|
this.fileSize = fileSize;
|
}
|
|
public Long getHeight() {
|
return height;
|
}
|
|
public void setHeight(Long height) {
|
this.height = height;
|
}
|
|
public Long getWidth() {
|
return width;
|
}
|
|
public void setWidth(Long width) {
|
this.width = width;
|
}
|
|
public Long getVerticalResolution() {
|
return verticalResolution;
|
}
|
|
public void setVerticalResolution(Long verticalResolution) {
|
this.verticalResolution = verticalResolution;
|
}
|
|
public Long getHorizontalResolution() {
|
return horizontalResolution;
|
}
|
|
public void setHorizontalResolution(Long horizontalResolution) {
|
this.horizontalResolution = horizontalResolution;
|
}
|
|
public String getSizeType() {
|
return sizeType;
|
}
|
|
public void setSizeType(String sizeType) {
|
this.sizeType = sizeType;
|
}
|
|
public String getFormat() {
|
return format;
|
}
|
|
public void setFormat(String format) {
|
this.format = format;
|
}
|
|
public String getIsCanceled() {
|
return isCanceled;
|
}
|
|
public void setIsCanceled(String isCanceled) {
|
this.isCanceled = isCanceled;
|
}
|
|
public String getIsSensitive() {
|
return isSensitive;
|
}
|
|
public void setIsSensitive(String isSensitive) {
|
this.isSensitive = isSensitive;
|
}
|
|
public String getSecurityLevel() {
|
return securityLevel;
|
}
|
|
public void setSecurityLevel(String securityLevel) {
|
this.securityLevel = securityLevel;
|
}
|
|
public String getRetentionPeriod() {
|
return retentionPeriod;
|
}
|
|
public void setRetentionPeriod(String retentionPeriod) {
|
this.retentionPeriod = retentionPeriod;
|
}
|
|
public String getIsDiagram() {
|
return isDiagram;
|
}
|
|
public void setIsDiagram(String isDiagram) {
|
this.isDiagram = isDiagram;
|
}
|
|
public String getIsAttachment() {
|
return isAttachment;
|
}
|
|
public void setIsAttachment(String isAttachment) {
|
this.isAttachment = isAttachment;
|
}
|
|
public String getPublicity() {
|
return publicity;
|
}
|
|
public void setPublicity(String publicity) {
|
this.publicity = publicity;
|
}
|
|
public String getStage() {
|
return stage;
|
}
|
|
public void setStage(String stage) {
|
this.stage = stage;
|
}
|
|
public Long getPageOrder() {
|
return pageOrder;
|
}
|
|
public void setPageOrder(Long pageOrder) {
|
this.pageOrder = pageOrder;
|
}
|
|
public Long getPageNumber() {
|
return pageNumber;
|
}
|
|
public void setPageNumber(Long pageNumber) {
|
this.pageNumber = pageNumber;
|
}
|
|
public Date getDate() {
|
return date;
|
}
|
|
public void setDate(Date date) {
|
this.date = date;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
@Excel(name="序号")
|
private int num;
|
@Excel(name="档号")
|
private String recordId;
|
@Excel(name = "文件材料序号", handler = NumberFormatHandler.class)
|
private Long fileNumber;
|
|
|
@Excel(name = "文件编号")
|
private String documentNumber;
|
|
|
/** $column.columnComment */
|
@Excel(name = "编任者")
|
private String creator;
|
|
/** $column.columnComment */
|
@Excel(name = "文件题名")
|
private String title;
|
|
/** $column.columnComment */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date date;
|
|
/** $column.columnComment */
|
@Excel(name = "页号", handler = NumberFormatHandler.class)
|
private Long pageNumber;
|
|
/** $column.columnComment */
|
@Excel(name = "页次")
|
private Long pageOrder;
|
|
/** $column.columnComment */
|
@Excel(name = "所处阶段")
|
private String stage;
|
|
/** $column.columnComment */
|
@Excel(name = "公开属性")
|
private String publicity;
|
|
/** $column.columnComment */
|
@Excel(name = "是否为附件附图")
|
private String isAttachment;
|
|
/** $column.columnComment */
|
// @Excel(name = "是否为附图")
|
private String isDiagram;
|
|
/** $column.columnComment */
|
@Excel(name = "保管期限")
|
private String retentionPeriod;
|
|
/** $column.columnComment */
|
@Excel(name = "密级")
|
private String securityLevel;
|
|
/** $column.columnComment */
|
@Excel(name = "是否涉密及敏感信息")
|
private String isSensitive;
|
|
/** $column.columnComment */
|
@Excel(name = "是否注销")
|
private String isCanceled;
|
|
/** $column.columnComment */
|
@Excel(name = "格式")
|
private String format;
|
|
/** $column.columnComment */
|
@Excel(name = "幅面")
|
private String sizeType;
|
|
/** $column.columnComment */
|
@Excel(name = "水平分辨率")
|
private Long horizontalResolution;
|
|
/** $column.columnComment */
|
@Excel(name = "垂直分辨率")
|
private Long verticalResolution;
|
|
/** $column.columnComment */
|
@Excel(name = "宽度")
|
private Long width;
|
|
/** $column.columnComment */
|
@Excel(name = "高度")
|
private Long height;
|
|
/** $column.columnComment */
|
@Excel(name = "大小")
|
private Double fileSize;
|
|
/** $column.columnComment */
|
@Excel(name = "附件及历史发文号")
|
private String attachmentHistoryNumbers;
|
|
/** $column.columnComment */
|
@Excel(name = "备注")
|
private String remarks;
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
private String url;
|
|
}
|