wlzboy
2025-11-07 2aebbc9601ab439707f69b08e467808df9f7549c
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskAttachment.java
@@ -37,6 +37,10 @@
    @Excel(name = "文件类型")
    private String fileType;
    /** 附件分类 */
    @Excel(name = "附件分类")
    private String attachmentCategory;
    /** 上传时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "上传时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
@@ -94,6 +98,14 @@
        return fileType;
    }
    public void setAttachmentCategory(String attachmentCategory) {
        this.attachmentCategory = attachmentCategory;
    }
    public String getAttachmentCategory() {
        return attachmentCategory;
    }
    public void setUploadTime(Date uploadTime) {
        this.uploadTime = uploadTime;
    }
@@ -119,6 +131,7 @@
                ", filePath='" + filePath + '\'' +
                ", fileSize=" + fileSize +
                ", fileType='" + fileType + '\'' +
                ", attachmentCategory='" + attachmentCategory + '\'' +
                ", uploadTime=" + uploadTime +
                ", uploadBy='" + uploadBy + '\'' +
                '}';