liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
package jnpf.tmsEntity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
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 lombok.Data;
 
import java.util.Date;
 
/**
 * 岗位培训计划 tms_post_plan
 */
@Data
@TableName("tms_post_plan")
public class TmsPostPlanEntity {
 
    @TableId("f_id")
    private String id;
 
    @TableField(value = "f_tenant_id", fill = FieldFill.INSERT)
    private String tenantId;
 
    @TableField("plan_no")
    private String planNo;
 
    @TableField("post_id")
    private String postId;
 
    @TableField("post_name")
    private String postName;
 
    @TableField("dept_id")
    private String deptId;
 
    @TableField("plan_end_time")
    private Date planEndTime;
 
    @TableField("post_desc")
    private String postDesc;
 
    @TableField("trainees")
    private String trainees;
 
    @TableField("catalog_id")
    private String catalogId;
 
    @TableField("publish_status")
    private String publishStatus;
 
    @TableField("remark")
    private String remark;
 
    @TableLogic
    @TableField("f_delete_mark")
    private Integer deleteMark;
 
    @TableField(value = "f_creator_user_id", fill = FieldFill.INSERT)
    private String creatorUserId;
 
    @TableField(value = "f_creator_time", fill = FieldFill.INSERT)
    private Date creatorTime;
}