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; }