jinlin
2023-11-08 b4ba324df408dc5f64b6f767b71ea9cfc870e5f0
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
package com.zt.life.modules.project.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.Date;
 
/**
 * software_test_order
 *
 * @author zt generator 
 * @since 1.0.0 2023-11-08
 */
@Data
@EqualsAndHashCode(callSuper=false)
public class SoftwareTestOrder extends BusiEntity {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "项目ID")
    private Long projectId;
 
    @ApiModelProperty(value = "运行环境")
    private String optEnviron;
 
    @ApiModelProperty(value = "编程语言")
    private String programLang;
 
    @ApiModelProperty(value = "测试依据")
    private String testBasis;
 
    @ApiModelProperty(value = "测试类型")
    private String testType;
 
    @ApiModelProperty(value = "测试标准")
    private String testStandard;
 
    @ApiModelProperty(value = "开始日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date startDate;
 
    @ApiModelProperty(value = "结束日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date endDate;
 
    @ApiModelProperty(value = "测试场地")
    private String testVenue;
 
    @ApiModelProperty(value = "其他要求")
    private String otherRequire;
 
    @ApiModelProperty(value = "测试日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date testDate;
 
    @ApiModelProperty(value = "交付日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date deliveryDate;
 
    @ApiModelProperty(value = "检测费用")
    private Integer testCost;
 
    @ApiModelProperty(value = "物品性质")
    private String articleNature;
 
    @ApiModelProperty(value = "样品状态")
    private String sampleStatus;
 
    @ApiModelProperty(value = "测评机构名称")
    private String agencyName;
 
    @ApiModelProperty(value = "地址")
    private String site;
 
    @ApiModelProperty(value = "业务联系")
    private String businContact;
 
    @ApiModelProperty(value = "业务投诉")
    private String businComplaint;
 
    @ApiModelProperty(value = "实验室联系人")
    private String laborContact;
 
    @ApiModelProperty(value = "实验室联系电话")
    private String labContactNum;
 
    @ApiModelProperty(value = "邮政编码")
    private String postalCode;
 
    @ApiModelProperty(value = "传真")
    private String fax;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "委托单位名称")
    private String entrustUnitName;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "委托单位地址")
    private String entrustUnitAddress;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "委托单位联系人")
    private String entrustUnitContact;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "委托单位联系方式")
    private String entrustUnitContWay;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "开发单位名称")
    private String developUnitName;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "开发单位地址")
    private String developUnitAddress;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "开发单位联系人")
    private String developUnitContact;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "开发单位联系方式")
    private String developUnitContWay;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "软件名称")
    private String softwareName;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "项目编号")
    private String code;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "项目标识")
    private String identity;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "密级")
    private Integer secretClass;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "关键等级")
    private Integer criticalLevel;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "测试级别")
    private Integer testLevel;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "软件类型")
    private String softwareType;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "项目负责人")
    private String projectLeader;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "项目测试人员")
    private String projectTesters;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "项目审核人员")
    private String projectReviewer;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "是否签署合同")
    private Integer isContract;
 
    public String getEntrustUnitName() {
        return entrustUnitName;
    }
 
    public void setEntrustUnitName(String entrustUnitName) {
        this.entrustUnitName = entrustUnitName;
    }
 
    public String getEntrustUnitAddress() {
        return entrustUnitAddress;
    }
 
    public void setEntrustUnitAddress(String entrustUnitAddress) {
        this.entrustUnitAddress = entrustUnitAddress;
    }
 
    public String getEntrustUnitContact() {
        return entrustUnitContact;
    }
 
    public void setEntrustUnitContact(String entrustUnitContact) {
        this.entrustUnitContact = entrustUnitContact;
    }
 
    public String getEntrustUnitContWay() {
        return entrustUnitContWay;
    }
 
    public void setEntrustUnitContWay(String entrustUnitContWay) {
        this.entrustUnitContWay = entrustUnitContWay;
    }
 
    public String getDevelopUnitName() {
        return developUnitName;
    }
 
    public void setDevelopUnitName(String developUnitName) {
        this.developUnitName = developUnitName;
    }
 
    public String getDevelopUnitAddress() {
        return developUnitAddress;
    }
 
    public void setDevelopUnitAddress(String developUnitAddress) {
        this.developUnitAddress = developUnitAddress;
    }
 
    public String getDevelopUnitContact() {
        return developUnitContact;
    }
 
    public void setDevelopUnitContact(String developUnitContact) {
        this.developUnitContact = developUnitContact;
    }
 
    public String getDevelopUnitContWay() {
        return developUnitContWay;
    }
 
    public void setDevelopUnitContWay(String developUnitContWay) {
        this.developUnitContWay = developUnitContWay;
    }
 
    public String getSoftwareName() {
        return softwareName;
    }
 
    public void setSoftwareName(String softwareName) {
        this.softwareName = softwareName;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getIdentity() {
        return identity;
    }
 
    public void setIdentity(String identity) {
        this.identity = identity;
    }
 
    public Integer getSecretClass() {
        return secretClass;
    }
 
    public void setSecretClass(Integer secretClass) {
        this.secretClass = secretClass;
    }
 
    public Integer getCriticalLevel() {
        return criticalLevel;
    }
 
    public void setCriticalLevel(Integer criticalLevel) {
        this.criticalLevel = criticalLevel;
    }
 
    public Integer getTestLevel() {
        return testLevel;
    }
 
    public void setTestLevel(Integer testLevel) {
        this.testLevel = testLevel;
    }
 
    public String getSoftwareType() {
        return softwareType;
    }
 
    public void setSoftwareType(String softwareType) {
        this.softwareType = softwareType;
    }
 
    public String getProjectLeader() {
        return projectLeader;
    }
 
    public void setProjectLeader(String projectLeader) {
        this.projectLeader = projectLeader;
    }
 
    public String getProjectTesters() {
        return projectTesters;
    }
 
    public void setProjectTesters(String projectTesters) {
        this.projectTesters = projectTesters;
    }
 
    public String getProjectReviewer() {
        return projectReviewer;
    }
 
    public void setProjectReviewer(String projectReviewer) {
        this.projectReviewer = projectReviewer;
    }
 
    public Integer getIsContract() {
        return isContract;
    }
 
    public void setIsContract(Integer isContract) {
        this.isContract = isContract;
    }
}