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:EmpPhysicalexam
|
* package:cc.mrbird.febs.server.hr.controller
|
* description:员工体检信息数据表映射实体
|
*
|
* @author luoyibo
|
* @date 2021-01-24 20:35:19
|
* @since JDK1.8
|
*/
|
@Data
|
@TableName("t_emp_physicalexam")
|
public class EmpPhysicalExam {
|
|
/**
|
* 体检Id
|
*/
|
@TableId(value = "physicalExamId", type = IdType.AUTO)
|
private Long physicalExamId;
|
|
/**
|
* 员工Id
|
*/
|
@TableField("empId")
|
private Long empId;
|
|
/**
|
* 体检医院
|
*/
|
@TableField("hosptial")
|
private String hosptial;
|
|
/**
|
* 体检日期
|
*/
|
@TableField("physicalExamDate")
|
private Date physicalExamDate;
|
|
/**
|
* 体检类型
|
*/
|
@TableField("physicalExamType")
|
private String physicalExamType;
|
|
/**
|
* 血压
|
*/
|
@TableField("bloodPressure")
|
private String bloodPressure;
|
|
/**
|
* 转氨酶
|
*/
|
@TableField("transaminase")
|
private String transaminase;
|
|
/**
|
* 心电图
|
*/
|
@TableField("ecg")
|
private String ecg;
|
|
/**
|
* 体检结论
|
*/
|
@TableField("conclusion")
|
private String conclusion;
|
|
/**
|
* 复查记录
|
*/
|
@TableField("reviewRecord")
|
private String reviewRecord;
|
|
/**
|
* 备注
|
*/
|
@TableField("remark")
|
private String remark;
|
|
/**
|
* 记录创建人
|
*/
|
@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;
|
|
}
|