liding
2025-04-01 8bf9254ba43e744517d4de2516121da2979fd057
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
package com.ruoyi.basic.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 检验项目参数(StructureItemParameter)表对象
 *
 * @author makejava
 * @since 2024-02-26 16:21:17
 */
@TableName(value = "structure_item_parameter")
@Data
public class StructureItemParameter implements Serializable {
 
    /**
     * 主键
     */
    @ApiModelProperty(value = "主键")
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * 检验项
     */
    @ApiModelProperty(value = "检验项")
    @ExcelProperty(value = "检测参数名称",index = 4)
    private String inspectionItem;
 
    /**
     * 检验项EN
     */
    @ApiModelProperty(value = "检验项EN")
    @ExcelProperty(value = "检测参数名称(EN)",index = 5)
    private String inspectionItemEn;
 
    /**
     * 检验子项
     */
    @ApiModelProperty(value = "检验子项")
    @ExcelProperty(value = "检测子项",index = 6)
    private String inspectionItemSubclass;
 
    /**
     * 检验子项EN
     */
    @ApiModelProperty(value = "检验子项EN")
    @ExcelProperty(value = "检测子项(EN)",index = 7)
    private String inspectionItemSubclassEn;
 
    /**
     * 检验对象
     */
    @ApiModelProperty(value = "检验对象")
    @ExcelProperty(value = "测试对象",index = 1)
    private String sample;
 
    /**
     * 单价(元)
     */
    @ApiModelProperty(value = "单价(元)")
    @ExcelProperty(value = "单价",index = 13)
    private String price;
 
    /**
     * 场所
     */
    @ApiModelProperty(value = "场所")
    @ExcelProperty(value = "场所",index = 24)
    private String laboratory;
 
    /**
     * 试验室
     */
    @ApiModelProperty(value = "试验室")
    @ExcelProperty(value = "试验室",index = 9)
    private String sonLaboratory;
 
    /**
     * 要求描述
     */
    @ApiModelProperty(value = "要求描述")
    @ExcelProperty(value = "标准显示",index = 11)
    private String askTell;
 
    /**
     * 要求值
     */
    @ApiModelProperty(value = "要求值")
    @ExcelProperty(value = "判断要求",index = 12)
    private String ask;
 
    /**
     * 计量单位
     */
    @ApiModelProperty(value = "计量单位")
    @ExcelProperty(value = "计量单位",index = 10)
    private String unit;
 
    /**
     * 试验方法
     */
    @ApiModelProperty(value = "试验方法")
    @ExcelProperty(value = "方法名称",index = 8)
    private String method;
 
    /**
     * 工时(H)
     */
    @ApiModelProperty(value = "工时(H)")
    @ExcelProperty(value = "工时系数",index = 14)
    private Double manHour;
 
    /**
     * 预计时间(H)
     */
    @ApiModelProperty(value = "预计时间(H)")
    @ExcelProperty(value = "预计完成时间",index = 16)
    private Integer manDay;
 
    /**
     * 工时分组
     */
    @ApiModelProperty(value = "工时分组")
    @ExcelProperty(value = "工时分组",index = 15)
    private String manHourGroup;
 
    /**
     * 检验项类型
     */
    @ApiModelProperty(value = "检验项类型")
    @ExcelProperty(value = "数据类型",index = 17)
    private String inspectionItemType;
 
    /**
     * 检验值类型
     */
    @ApiModelProperty(value = "检验值类型")
    @ExcelProperty(value = "检验值类型",index = 18)
    private String inspectionValueType;
 
    /**
     * 检验次数
     */
    @ApiModelProperty(value = "检验次数")
    private Integer checkoutNumber;
 
    /**
     * 区间
     */
    @ApiModelProperty(value = "区间")
    private String section;
 
    /**
     * 特殊标识
     */
    @ApiModelProperty(value = "特殊标识")
    @ExcelProperty(value = "特殊标识",index = 19)
    private String bsm;
 
    /**
     * 原始记录模板
     */
    @ApiModelProperty(value = "原始记录模板")
    private Integer templateId;
 
    @TableField(exist = false)
    @ExcelProperty(value = "原始记录模板",index = 21)
    private String templateName;
 
    /**
     * 创建人id
     */
    @ApiModelProperty(value = "创建人id")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    /**
     * 修改人id
     */
    @ApiModelProperty(value = "修改人id")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
    /**
     * 修改时间
     */
    @ApiModelProperty(value = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
 
    /**
     * 字典类型
     */
    @ApiModelProperty(value = "字典类型")
    @ExcelProperty(value = "数据字典",index = 20)
    private String dic;
 
    /**
     * 检验项分类
     */
    @ApiModelProperty(value = "检验项分类")
    @ExcelProperty(value = "检验项分类",index = 22)
    private String inspectionItemClass;
 
    /**
     * 检验项分类EN
     */
    @ApiModelProperty(value = "检验项分类EN")
    @ExcelProperty(value = "检验项分类",index = 23)
    private String inspectionItemClassEn;
 
    /**
     * 条件
     */
    @ApiModelProperty(value = "条件")
    @ExcelProperty(value = "试验条件",index = 25)
    private String radiusList;
 
    /**
     * 收费标准(元/次)
     */
    @ApiModelProperty(value = "收费标准(元/次)")
    @ExcelProperty(value = "收费标准",index = 26)
    private String rates;
 
    @TableField(exist = false)
    @ExcelProperty(value = "产品",index = 2)
    private String product;
 
    @ExcelProperty(value = "检测参数编号",index = 3)
    @TableField(exist = false)
    private String parameterNumber;
}