package com.gkhy.safePlatform.targetDuty.model.dto.resp;
|
|
import java.sql.Timestamp;
|
import java.io.Serializable;
|
|
public class TargetDivideDetailDto implements Serializable {
|
|
private Long id;
|
//关联的目标指标/外键
|
private Long targetId;
|
//考核指标值
|
private String value;
|
//制定日期
|
private Timestamp makeDate;
|
//责任部门/外键
|
private Long dutyDepartmentId;
|
//制定人部门/外键
|
private Long makerDepartmentId;
|
//上报人/外键
|
private Long commitPersonId;
|
|
private Timestamp createTime;
|
|
private Timestamp updateTime;
|
|
//上报人名称
|
private String commitPersonName;
|
|
//责任部门名称
|
private String dutyDepartmentName;
|
//制定人部门名称
|
private String makerDepartmentName;
|
|
//目标分类/外键
|
private Long targetTypeId;
|
|
public Long getTargetTypeId() {
|
return targetTypeId;
|
}
|
|
public void setTargetTypeId(Long targetTypeId) {
|
this.targetTypeId = targetTypeId;
|
}
|
|
//目标分类名称
|
private String targetTypeName;
|
|
public String getTargetTypeName() {
|
return targetTypeName;
|
}
|
|
public void setTargetTypeName(String targetTypeName) {
|
this.targetTypeName = targetTypeName;
|
}
|
|
//责任人/外键
|
private Long dutyPersonId;
|
|
public Long getDutyPersonId() {
|
return dutyPersonId;
|
}
|
|
public void setDutyPersonId(Long dutyPersonId) {
|
this.dutyPersonId = dutyPersonId;
|
}
|
//责任人名称
|
private String dutyPersonName;
|
|
public String getDutyPersonName() {
|
return dutyPersonName;
|
}
|
|
public void setDutyPersonName(String dutyPersonName) {
|
this.dutyPersonName = dutyPersonName;
|
}
|
//计划措施
|
private String planDesc;
|
|
public String getPlanDesc() {
|
return planDesc;
|
}
|
|
public void setPlanDesc(String planDesc) {
|
this.planDesc = planDesc;
|
}
|
|
|
public String getDutyDepartmentName() {
|
return dutyDepartmentName;
|
}
|
|
public void setDutyDepartmentName(String dutyDepartmentName) {
|
this.dutyDepartmentName = dutyDepartmentName;
|
}
|
|
public String getMakerDepartmentName() {
|
return makerDepartmentName;
|
}
|
|
public void setMakerDepartmentName(String makerDepartmentName) {
|
this.makerDepartmentName = makerDepartmentName;
|
}
|
|
public String getCommitPersonName() {
|
return commitPersonName;
|
}
|
|
public void setCommitPersonName(String commitPersonName) {
|
this.commitPersonName = commitPersonName;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
//关联的目标指标/外键
|
public Long getTargetId() {
|
return targetId;
|
}
|
|
public void setTargetId(Long targetId) {
|
this.targetId = targetId;
|
}
|
//考核指标值
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
//制定日期
|
public Timestamp getMakeDate() {
|
return makeDate;
|
}
|
|
public void setMakeDate(Timestamp makeDate) {
|
this.makeDate = makeDate;
|
}
|
//责任部门/外键
|
public Long getDutyDepartmentId() {
|
return dutyDepartmentId;
|
}
|
|
public void setDutyDepartmentId(Long dutyDepartmentId) {
|
this.dutyDepartmentId = dutyDepartmentId;
|
}
|
//制定人部门/外键
|
public Long getMakerDepartmentId() {
|
return makerDepartmentId;
|
}
|
|
public void setMakerDepartmentId(Long makerDepartmentId) {
|
this.makerDepartmentId = makerDepartmentId;
|
}
|
//上报人/外键
|
public Long getCommitPersonId() {
|
return commitPersonId;
|
}
|
|
public void setCommitPersonId(Long commitPersonId) {
|
this.commitPersonId = commitPersonId;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|