package com.gkhy.safePlatform.targetDuty.entity;
|
|
import java.sql.Timestamp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
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;
|
|
/**
|
* 目标指标分解详情(TargetDivideDetail)表实体类
|
*
|
* @author xurui
|
* @since 2022-08-03 09:25:40
|
*/
|
@SuppressWarnings("serial")
|
@TableName("target_divide_detail")
|
public class TargetDivideDetail extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//关联的目标指标/外键
|
private Long targetId;
|
|
public Long getTargetId() {
|
return targetId;
|
}
|
|
public void setTargetId(Long targetId) {
|
this.targetId = targetId;
|
}
|
//考核指标值
|
private String value;
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
//制定日期
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp makeDate;
|
|
public Timestamp getMakeDate() {
|
return makeDate;
|
}
|
|
public void setMakeDate(Timestamp makeDate) {
|
this.makeDate = makeDate;
|
}
|
//责任部门/外键
|
private Long dutyDepartmentId;
|
|
public Long getDutyDepartmentId() {
|
return dutyDepartmentId;
|
}
|
|
public void setDutyDepartmentId(Long dutyDepartmentId) {
|
this.dutyDepartmentId = dutyDepartmentId;
|
}
|
//制定人部门/外键
|
private Long makerDepartmentId;
|
|
public Long getMakerDepartmentId() {
|
return makerDepartmentId;
|
}
|
|
public void setMakerDepartmentId(Long makerDepartmentId) {
|
this.makerDepartmentId = makerDepartmentId;
|
}
|
//上报人/外键
|
private Long commitPersonId;
|
|
public Long getCommitPersonId() {
|
return commitPersonId;
|
}
|
|
public void setCommitPersonId(Long commitPersonId) {
|
this.commitPersonId = commitPersonId;
|
}
|
//上报人名称
|
private String commitPersonName;
|
|
public String getCommitPersonName() {
|
return commitPersonName;
|
}
|
|
public void setCommitPersonName(String commitPersonName) {
|
this.commitPersonName = commitPersonName;
|
}
|
|
}
|