fei
昨天 af47b774448bfa3ece4741664ce4d24128c8f629
archiveManager/src/main/java/com/ruoyi/domain/DocumentMaterials.java
@@ -7,6 +7,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.NumberFormatHandler;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
@@ -25,21 +26,38 @@
    /** $column.columnComment */
    @TableId(type = IdType.AUTO)
    private Long materialId;
    @Excel(name = "文件材料序号", handler = NumberFormatHandler.class)
    private Long fileNumber;
    @Excel(name = "文件编号")
    private String documentNumber;
    public Long getFileNumber() {
        return fileNumber;
    }
    public void setFileNumber(Long fileNumber) {
        this.fileNumber = fileNumber;
    }
    /** $column.columnComment */
    @Excel(name = "文件编任者")
    @Excel(name = "编任者")
    private String creator;
    /** $column.columnComment */
    @Excel(name = "文件提名")
    @Excel(name = "文件题名")
    private String title;
    /** $column.columnComment */
    @Excel(name = "日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date date;
    /** $column.columnComment */
    @Excel(name = "页号")
    @Excel(name = "页号", handler = NumberFormatHandler.class)
    private Long pageNumber;
    /** $column.columnComment */
@@ -55,11 +73,11 @@
    private String publicity;
    /** $column.columnComment */
    @Excel(name = "是否为附件")
    @Excel(name = "是否为附件附图")
    private String isAttachment;
    /** $column.columnComment */
    @Excel(name = "是否为附图")
//    @Excel(name = "是否为附图")
    private String isDiagram;
    /** $column.columnComment */
@@ -104,7 +122,7 @@
    /** $column.columnComment */
    @Excel(name = "大小")
    private Long fileSize;
    private Double fileSize;
    /** $column.columnComment */
    @Excel(name = "附件及历史发文号")
@@ -115,15 +133,30 @@
    private String remarks;
    /** $column.columnComment */
    @Excel(name = "${comment}")
    private Date createdAt;
    /** $column.columnComment */
    @Excel(name = "${comment}")
    private Date updatedAt;
    private String fileStyle;
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    private String url;
    private Long recordId;
    public String getFileStyle() {
        return fileStyle;
    }
    public void setFileStyle(String fileStyle) {
        this.fileStyle = fileStyle;
    }
    public Long getRecordId() {
        return recordId;
@@ -253,6 +286,14 @@
        return securityLevel;
    }
    public String getDocumentNumber() {
        return documentNumber;
    }
    public void setDocumentNumber(String documentNumber) {
        this.documentNumber = documentNumber;
    }
    public void setIsSensitive(String isSensitive)
    {
        this.isSensitive = isSensitive;
@@ -333,12 +374,12 @@
        return height;
    }
    public void setFileSize(Long fileSize)
    public void setFileSize(Double fileSize)
    {
        this.fileSize = fileSize;
    }
    public Long getFileSize()
    public Double getFileSize()
    {
        return fileSize;
    }