songhuangfeng123
2022-08-12 5703d0e9865df3ba05bb02bc382ce59fbf5f7da0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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 qName;
    //目标指标编号
    private String indexNum;
    //年度
    private String year;
    //指标值
    private String value;
    //关联的考核数据列表
    private List<TargetExamineDivideDto> examineList = new ArrayList<>();
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getqName() {
        return qName;
    }
 
    public void setqName(String qName) {
        this.qName = qName;
    }
 
    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<TargetExamineDivideDto> getExamineList() {
        return examineList;
    }
 
    public void setExamineList(List<TargetExamineDivideDto> examineList) {
        this.examineList = examineList;
    }
}