luoyb
2021-03-07 1b39b59699b8209e243ce151e5493b0b25f36ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package cc.mrbird.febs.server.hr.entity;
 
import java.util.Date;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
/**
* 附件管理 Entity
*
* @author yz
* @date 2021-02-15 17:07:19
*/
@Data
@TableName("t_emp_accessory")
public class EmpAccessory {
 
    /**
     * 附件Id
     */
    @TableId(value = "accessoryId")
    private Long accessoryid;
 
    /**
     * 记录创建时间
     */
    @TableField("createTime")
    private Date createtime;
 
    /**
     * 记录创建人
     */
    @TableField("creator")
    private String creator;
 
    /**
     * 记录删除标志。0-未删除 1-已删除,默认0
     */
    @TableField("delFlag")
    private Integer delFlag = 0;
    /**
     * 记录最后更新人
     */
    @TableField("modifier")
    private String modifier;
    /**
     * 记录最后更新时间
     */
    @TableField("modifyTime")
    private Date modifytime;
 
    /**
     * 记录版本号,用来进行乐观锁控制
     */
    @TableField("version")
    private Integer version;
    /**
     * 员工Id
     */
    @TableField("empId")
    private Long empid;
    /**
     * 文件存储地址
     */
    @TableField("filesAddress")
    private String filesaddress;
 
    /**
     * 文件格式
     */
    @TableField("filesFormat")
    private String filesformat;
 
    /**
     * 文件名称
     */
    @TableField("filesName")
    private String filesname;
 
    /**
     * 文件夹ID
     */
    @TableField("labelId")
    private Long labelid;
 
 
}