package com.gkhy.safePlatform.targetDuty.entity;
|
|
import java.sql.Timestamp;
|
import com.gkhy.safePlatform.targetDuty.entity.BaseDomain;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
/**
|
* 安全目标考核(TargetExamine)表实体类
|
*
|
* @author xurui
|
* @since 2022-08-29 08:44:10
|
*/
|
@SuppressWarnings("serial")
|
@TableName("target_examine")
|
public class TargetExamine extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//关联的目标分解/外键
|
private Long targetDivideDetailId;
|
|
public Long getTargetDivideDetailId() {
|
return targetDivideDetailId;
|
}
|
|
public void setTargetDivideDetailId(Long targetDivideDetailId) {
|
this.targetDivideDetailId = targetDivideDetailId;
|
}
|
//上报值
|
private String uploadValue;
|
|
public String getUploadValue() {
|
return uploadValue;
|
}
|
|
public void setUploadValue(String uploadValue) {
|
this.uploadValue = uploadValue;
|
}
|
//上报时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp uploadDate;
|
|
public Timestamp getUploadDate() {
|
return uploadDate;
|
}
|
|
public void setUploadDate(Timestamp uploadDate) {
|
this.uploadDate = uploadDate;
|
}
|
//考核结果 1:合格 2:不合格
|
private Integer examineResult;
|
|
public Integer getExamineResult() {
|
return examineResult;
|
}
|
|
public void setExamineResult(Integer examineResult) {
|
this.examineResult = examineResult;
|
}
|
//考核人ID/外键
|
private Long examinePersonId;
|
|
public Long getExaminePersonId() {
|
return examinePersonId;
|
}
|
|
public void setExaminePersonId(Long examinePersonId) {
|
this.examinePersonId = examinePersonId;
|
}
|
//考核人名称
|
private String examinePersonName;
|
|
public String getExaminePersonName() {
|
return examinePersonName;
|
}
|
|
public void setExaminePersonName(String examinePersonName) {
|
this.examinePersonName = examinePersonName;
|
}
|
//考核时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp examineDate;
|
|
public Timestamp getExamineDate() {
|
return examineDate;
|
}
|
|
public void setExamineDate(Timestamp examineDate) {
|
this.examineDate = examineDate;
|
}
|
//是否删除 0:未删除 1:删除
|
private Integer delFlag;
|
|
public Integer getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Integer delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
}
|