package com.gkhy.safePlatform.targetDuty.model.dto.resp;
|
|
import com.gkhy.safePlatform.targetDuty.entity.TargetExamine;
|
|
import java.sql.Timestamp;
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class TargetExamineDto implements Serializable {
|
private Long id;
|
//安全目标指标
|
private String name;
|
//目标指标编号
|
private String indexNum;
|
//年度
|
private String year;
|
//指标值
|
private String value;
|
//关联的考核数据列表
|
private List<TargetExamine> examineList = new ArrayList<>();
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getIndexNum() {
|
return indexNum;
|
}
|
|
public void setIndexNum(String indexNum) {
|
this.indexNum = indexNum;
|
}
|
|
public String getYear() {
|
return year;
|
}
|
|
public void setYear(String year) {
|
this.year = year;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
public List<TargetExamine> getExamineList() {
|
return examineList;
|
}
|
|
public void setExamineList(List<TargetExamine> examineList) {
|
this.examineList = examineList;
|
}
|
}
|