yijiusmile
2021-02-18 655ba7e8220644462441b401c6d763530e1363a9
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
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", type = IdType.AUTO)
    private Long accessoryid;
 
    /**
     * 处罚数量
     */
    @TableField("cf")
    private Integer cf;
 
    /**
     * 记录创建时间
     */
    @TableField("createTime")
    private Date createtime;
 
    /**
     * 记录创建人
     */
    @TableField("creator")
    private String creator;
 
    /**
     * 辞职申请数量
     */
    @TableField("czsq")
    private Integer czsq;
 
    /**
     * 记录删除标志。0-未删除 1-已删除,默认0
     */
    @TableField("delFlag")
    private Integer delFlag = 0;
    /**
     * 员工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;
 
 
}