郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package com.gk.hotwork.specialWork.model.dto.resp;
 
 
import java.io.Serializable;
import java.math.BigDecimal;
 
public class OthersWorkApprovalUnitFilledItemRespDTO implements Serializable {
 
    private static final long serialVersionUID = -846725374243167L;
 
    private Long id;
 
    private Long itemId;
 
    private Long unitId;
 
    private BigDecimal val;
 
    private Long workApplyId;
 
    private Byte measureVal;
 
    private String measureValDesc;
 
    private String measureText;
 
    private Byte fillType;
 
    private String fillTypeDesc;
 
    //填报项名称
    private String itemName;
 
    //填报类型 数值、选项、填空...
    private Byte itemType;
 
    private String itemTypeDesc;
 
    //适用标准ID
    private Long standId;
 
    private Long measureId;
 
    //安全措施 - 是否是涉及项
    private Boolean measureInvolve;
 
    private String analysisLocation;
 
    private OthersWorkApprovalItemMeasureRespDTO measure;
 
    private OthersWorkApprovalItemStandRespDTO stand;
 
    public Long getItemId() {
        return itemId;
    }
 
    public void setItemId(Long itemId) {
        this.itemId = itemId;
    }
 
    public Long getUnitId() {
        return unitId;
    }
 
    public void setUnitId(Long unitId) {
        this.unitId = unitId;
    }
 
    public BigDecimal getVal() {
        return val;
    }
 
    public void setVal(BigDecimal val) {
        this.val = val;
    }
 
    public Long getWorkApplyId() {
        return workApplyId;
    }
 
    public void setWorkApplyId(Long workApplyId) {
        this.workApplyId = workApplyId;
    }
 
    public Byte getMeasureVal() {
        return measureVal;
    }
 
    public void setMeasureVal(Byte measureVal) {
        this.measureVal = measureVal;
    }
 
    public String getMeasureText() {
        return measureText;
    }
 
    public void setMeasureText(String measureText) {
        this.measureText = measureText;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getItemName() {
        return itemName;
    }
 
    public void setItemName(String itemName) {
        this.itemName = itemName;
    }
 
    public Byte getItemType() {
        return itemType;
    }
 
    public void setItemType(Byte itemType) {
        this.itemType = itemType;
    }
 
    public Long getStandId() {
        return standId;
    }
 
    public void setStandId(Long standId) {
        this.standId = standId;
    }
 
    public Long getMeasureId() {
        return measureId;
    }
 
    public void setMeasureId(Long measureId) {
        this.measureId = measureId;
    }
 
    public Boolean getMeasureInvolve() {
        return measureInvolve;
    }
 
    public void setMeasureInvolve(Boolean measureInvolve) {
        this.measureInvolve = measureInvolve;
    }
 
    public OthersWorkApprovalItemMeasureRespDTO getMeasure() {
        return measure;
    }
 
    public void setMeasure(OthersWorkApprovalItemMeasureRespDTO measure) {
        this.measure = measure;
    }
 
    public OthersWorkApprovalItemStandRespDTO getStand() {
        return stand;
    }
 
    public void setStand(OthersWorkApprovalItemStandRespDTO stand) {
        this.stand = stand;
    }
 
    public String getItemTypeDesc() {
        return itemTypeDesc;
    }
 
    public void setItemTypeDesc(String itemTypeDesc) {
        this.itemTypeDesc = itemTypeDesc;
    }
 
    public String getAnalysisLocation() {
        return analysisLocation;
    }
 
    public void setAnalysisLocation(String analysisLocation) {
        this.analysisLocation = analysisLocation;
    }
 
    public String getMeasureValDesc() {
        return measureValDesc;
    }
 
    public void setMeasureValDesc(String measureValDesc) {
        this.measureValDesc = measureValDesc;
    }
 
    public Byte getFillType() {
        return fillType;
    }
 
    public void setFillType(Byte fillType) {
        this.fillType = fillType;
    }
 
    public String getFillTypeDesc() {
        return fillTypeDesc;
    }
 
    public void setFillTypeDesc(String fillTypeDesc) {
        this.fillTypeDesc = fillTypeDesc;
    }
}