对比新文件 |
| | |
| | | package org.jeecg.modules.dnc.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.util.Date; |
| | | /** |
| | | * @Description: 瀵煎叆鏂囦欢 |
| | | * @author clown |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | @TableName(value = "nc_doc_file") |
| | | public class DocFile { |
| | | @TableId(value = "file_id") |
| | | private String fileId; |
| | | @TableField(value = "file_name") |
| | | private String fileName; |
| | | @TableField(value = "file_encode_name") |
| | | private String fileEncodeName; |
| | | @TableField(value = "file_path") |
| | | private String filePath; |
| | | @TableField(value = "file_suffix") |
| | | private String fileSuffix; |
| | | @TableField(value = "doc_version") |
| | | private String docVersion; |
| | | @TableField(value = "doc_id") |
| | | private String docId; |
| | | @TableField(value = "file_size") |
| | | private Long fileSize; |
| | | |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | @TableField(value = "update_time", fill = FieldFill.UPDATE) |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | private Date updateTime; |
| | | @TableField(value = "create_by",fill = FieldFill.INSERT) |
| | | private String createBy; |
| | | @TableField(value = "update_by", fill = FieldFill.UPDATE) |
| | | private String updateBy; |
| | | @JsonIgnore |
| | | @TableLogic |
| | | @TableField(value = "delete_flag", select = false) |
| | | private Integer deleteFlag = 0; |
| | | |
| | | //褰撳墠鐗堟湰 |
| | | private transient boolean publishFlag; |
| | | } |