| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.fdkankan.fusion.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2023-07-28
- */
- @Getter
- @Setter
- @TableName("tm_attachment")
- public class TmAttachment implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 唯一ID
- */
- @TableId("id")
- private String id;
- /**
- * 附件名称
- */
- @TableField("file_name")
- private String fileName;
- /**
- * 附件类型
- */
- @TableField("attachment_type")
- private String attachmentType;
- /**
- * 文件类型:1->照片;2->文件
- */
- @TableField("type")
- private Integer type;
- /**
- * 附件的oss路径
- */
- @TableField("file_oss_url")
- private String fileOssUrl;
- /**
- * 附件所属的部门ID
- */
- @TableField("dept_id")
- private String deptId;
- /**
- * 附件上传人ID
- */
- @TableField("creator_id")
- private String creatorId;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 最新更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 是否删除: 0->未删除;1->已删除
- */
- @TableField("is_delete")
- @TableLogic
- private Integer isDelete;
- /**
- * 附件所属的火调项目ID
- */
- @TableField("project_id")
- private String projectId;
- }
|