| | |
| | | @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") |
| | |
| | | return fileType; |
| | | } |
| | | |
| | | public void setAttachmentCategory(String attachmentCategory) { |
| | | this.attachmentCategory = attachmentCategory; |
| | | } |
| | | |
| | | public String getAttachmentCategory() { |
| | | return attachmentCategory; |
| | | } |
| | | |
| | | public void setUploadTime(Date uploadTime) { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | |
| | | ", filePath='" + filePath + '\'' + |
| | | ", fileSize=" + fileSize + |
| | | ", fileType='" + fileType + '\'' + |
| | | ", attachmentCategory='" + attachmentCategory + '\'' + |
| | | ", uploadTime=" + uploadTime + |
| | | ", uploadBy='" + uploadBy + '\'' + |
| | | '}'; |