zss
2024-12-30 97bb7a8832281eafe0ef947ea095258d355e52f5
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
package com.yuanchu.mom.pojo;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 标准树下的检验项目
 * @TableName standard_product_list
 */
@TableName(value ="standard_product_list")
@Data
public class StandardProductList implements Serializable {
    /**
     * 主键id
     */
    @TableId(value = "id",type = IdType.ASSIGN_ID)
    @JsonSerialize(using = ToStringSerializer.class)
    @ExcelIgnore
    private Long id;
 
    /**
     * 检验项
     */
    @ApiModelProperty("检验项")
    @ExcelProperty(value = "检测参数名称")
    private String inspectionItem;
 
    @ApiModelProperty("检验项EN")
    @ExcelProperty(value = "检测参数名称(EN)")
    private String inspectionItemEn;
 
    /**
     * 检验项小类
     */
    @ApiModelProperty("检验项小类")
    @ExcelProperty(value = "检测子项")
    private String inspectionItemSubclass;
 
    @ApiModelProperty("检验项小类EN")
    @ExcelProperty(value = "检测子项(EN)")
    private String inspectionItemSubclassEn;
 
    /**
     * 实验室
     */
    @ApiModelProperty("实验室")
    @ExcelIgnore
    private String laboratory;
 
    @ApiModelProperty("子实验室")
    @ExcelProperty(value = "试验室")
    private String sonLaboratory;
 
    /**
     * 计量单位
     */
    @ApiModelProperty("计量单位")
    @ExcelProperty(value = "计量单位")
    private String unit;
 
    /**
     * 单价(元)
     */
    @ApiModelProperty("单价")
    @ExcelProperty(value = "单价")
    private String price;
 
    /**
     * 工时(H)
     */
    @ApiModelProperty("工时")
    @ExcelProperty(value = "工时系数")
    private String manHour;
 
    /**
     * 工时分组
     */
    @ApiModelProperty("工时分组")
    @ExcelProperty(value = "工时分组")
    private String manHourGroup;
 
    /**
     * 检验项类型
     */
    @ApiModelProperty("检验项类型")
    @ExcelProperty(value = "检验项类型")
    private String inspectionItemType;
 
    /**
     * 检验值类型
     */
    @ApiModelProperty("检验值类型")
    @ExcelProperty(value = "数据类型")
    private String inspectionValueType;
 
    /**
     * 检验次数
     */
    @ApiModelProperty("检验次数")
    @ExcelIgnore
    private Integer checkoutNumber;
 
    /**
     * 区间
     */
    @ApiModelProperty("区间")
    @ExcelIgnore
    private String section;
 
    /**
     * 方法
     */
    @ApiModelProperty("方法列表")
    @ExcelIgnore
    private String method;
 
    @ApiModelProperty("方法")
    @ExcelProperty(value = "方法名称")
    private String methodS;
 
    /**
     * 预计时间(天)
     */
    @ApiModelProperty("预计时间")
    @ExcelProperty(value = "预计完成时间")
    private Integer manDay;
 
    /**
     * 特殊标识
     */
    @ApiModelProperty("特殊标识")
    @ExcelProperty(value = "特殊标识")
    private String bsm;
 
    /**
     * 要求值
     */
    @ApiModelProperty("要求值")
    @ExcelProperty(value = "判断要求")
    private String ask;
 
    @ApiModelProperty("要求描述")
    @ExcelProperty(value = "标准显示")
    private String tell;
 
    /**
     * 外键:标准方法id
     */
    @ApiModelProperty("标准方法id")
    @ExcelIgnore
    private Integer standardMethodListId;
 
    @ApiModelProperty("工厂")
    @ExcelIgnore
    private String factory;
 
    @ApiModelProperty("样品分类")
    @ExcelProperty(value = "测试对象")
    private String sampleType;
 
    @ApiModelProperty("样品")
    @ExcelProperty(value = "产品")
    private String sample;
 
    @ApiModelProperty("型号")
    @ExcelProperty(value = "型号")
    private String model;
 
    @ApiModelProperty("模版id")
    @ExcelIgnore
    private Integer templateId;
 
    @ApiModelProperty("")
    @TableField(fill = FieldFill.INSERT)
    @ExcelIgnore
    private Integer createUser;
    /**
     *
     */
    @ApiModelProperty("创建时间")
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelIgnore
    private LocalDateTime createTime;
    /**
     *
     */
    @ApiModelProperty("")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @ExcelIgnore
    private Integer updateUser;
    /**
     *
     */
    @ApiModelProperty("修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelIgnore
    private LocalDateTime updateTime;
 
    @ApiModelProperty("1:有效 0:无效")
    @ExcelIgnore
    private Integer state;
 
    @ExcelIgnore
    private String dic;
 
    @ExcelIgnore
    private String tree;
 
    @ExcelIgnore
    private Integer structureItemParameterId;
 
    @ApiModelProperty(value = "检验项分类")
    @ExcelIgnore
    private String inspectionItemClass;
 
    @ApiModelProperty(value = "检验项分类EN")
    @ExcelIgnore
    private String inspectionItemClassEn;
}