fei
21 小时以前 f984f785528bb3c97e41d483dc214e844993df35
archiveManager/src/main/java/com/ruoyi/domain/DocumentMaterials.java
@@ -25,17 +25,34 @@
    /** $column.columnComment */
    @TableId(type = IdType.AUTO)
    private Long materialId;
    @Excel(name = "文件材料序号")
    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 */
@@ -104,7 +121,7 @@
    /** $column.columnComment */
    @Excel(name = "大小")
    private Long fileSize;
    private Double fileSize;
    /** $column.columnComment */
    @Excel(name = "附件及历史发文号")
@@ -115,15 +132,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 +285,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 +373,12 @@
        return height;
    }
    public void setFileSize(Long fileSize)
    public void setFileSize(Double fileSize)
    {
        this.fileSize = fileSize;
    }
    public Long getFileSize()
    public Double getFileSize()
    {
        return fileSize;
    }