package com.huimv.management.entity; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * 养殖员信息表 * * @author yinhao * @email yinhao@163.com * @date 2021-05-07 15:32:42 */ @Data @TableName("mgt_employee") public class EmployeeEntity implements Serializable { private static final long serialVersionUID = 1L; /** * */ @TableId private Integer id; /** * 姓名 */ private String name; /** * 职位 */ private String position; /** * 入场时间 */ private Date approachTime; /** * 离场时间 */ private Date departureTime; /** * 是否当前在职(1:在岗,0不在岗) */ private Boolean jobStatus; /** * 删除状态 0正常 1已删除 */ @TableLogic private Integer deleted; /** * 创建时间 */ @TableField(fill = FieldFill.INSERT) private Date gmtCreate; /** * 修改时间 */ @TableField(fill = FieldFill.INSERT_UPDATE) private Date gmtModified; }