luoyb
2021-01-28 d50c285e5f21eefc62b7848ea96d186e1e64475b
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
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;
 
/**
*
* name:EmpRemarkinfo
* package:cc.mrbird.febs.server.hr.controller
* description:员工备注信息数据表映射实体
*
* @author luoyibo
* @date 2021-01-24 20:35:15
* @since JDK1.8
*/
@Data
@TableName("t_emp_remarkinfo")
public class EmpRemarkInfo {
 
        /**
        * 备注Id
        */
            @TableId(value = "remarkId", type = IdType.AUTO)
            private Long remarkId;
 
        /**
        * 员工Id
        */
            @TableField("empId")
            private Long empId;
 
        /**
        * 备注内容
        */
            @TableField("remarkContent")
            private String remarkContent;
 
        /**
        * 备注日期
        */
            @TableField("remarkDate")
            private Date remarkDate;
 
        /**
        * 记录创建时间
        */
            @TableField("createTime")
            private Date createTime;
 
        /**
        * 记录创建人
        */
            @TableField("creator")
            private String creator;
 
        /**
        * 记录最后更新时间
        */
            @TableField("modifyTime")
            private Date modifyTime;
 
        /**
        * 记录最后更新人
        */
            @TableField("modifier")
            private String modifier;
 
        /**
        * 记录删除标志。0-未删除 1-已删除,默认0
        */
            @TableField("delFlag")
            private Integer delFlag;
 
        /**
        * 记录版本号,用来进行乐观锁控制
        */
            @TableField("version")
            private Integer version;
 
}