fix
songhuangfeng123
2022-09-20 f1f506172a3edff8d31e4db77b8940f115660919
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package com.gkhy.safePlatform.targetDuty.model.dto.resp;
 
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
 
public class TargetCheckAndSubmitDto implements Serializable {
 
    // 最新的审批id
    private Long approveId;
 
    public Long getApproveId() {
        return approveId;
    }
 
    public void setApproveId(Long approveId) {
        this.approveId = approveId;
    }
 
    // 最新的审批状态
    private Integer approveStatus;
 
    // 最新的审批人
    private Long approvePersonId;
 
    // 审批人是否为当前登录人
    private Boolean checkApprove;
 
    public Integer getApproveStatus() {
        return approveStatus;
    }
 
    public void setApproveStatus(Integer approveStatus) {
        this.approveStatus = approveStatus;
    }
 
    public Long getApprovePersonId() {
        return approvePersonId;
    }
 
    public void setApprovePersonId(Long approvePersonId) {
        this.approvePersonId = approvePersonId;
    }
 
    public Boolean getCheckApprove() {
        return checkApprove;
    }
 
    public void setCheckApprove(Boolean checkApprove) {
        this.checkApprove = checkApprove;
    }
 
    private Long id;
    //安全目标指标    
    private String qName;
    //目标指标编号    
    private String indexNum;
    //年度    
    private String year;
    //指标值    
    private String value;
    //指标级别 1:公司级 2:部门分厂级 3:工段班组级    
    private Integer level;
    //完成期限    
    private Timestamp completeDate;
    //备注信息    
    private String memo;
    //指标类型 1:年指标 2:月指标    
    private Integer targetType;
    //分解状态 1:已分解 2:未分解    
    private Integer divideStatus;
        
    private Timestamp createTime;
        
    private Timestamp updateTime;
 
    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;
    }
    //指标级别 1:公司级 2:部门分厂级 3:工段班组级        
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
    //完成期限        
    public Timestamp getCompleteDate() {
        return completeDate;
    }
 
    public void setCompleteDate(Timestamp completeDate) {
        this.completeDate = completeDate;
    }
    //备注信息        
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
    //指标类型 1:年指标 2:月指标        
    public Integer getTargetType() {
        return targetType;
    }
 
    public void setTargetType(Integer targetType) {
        this.targetType = targetType;
    }
    //分解状态 1:已分解 2:未分解        
    public Integer getDivideStatus() {
        return divideStatus;
    }
 
    public void setDivideStatus(Integer divideStatus) {
        this.divideStatus = divideStatus;
    }
            
    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;
    }
}