zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.lims.testing.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: lims_item_target
 * @Author: jeecg-boot
 * @Date: 2023-04-24
 * @Version: V1.0
 */
@Data
@TableName("lims_item_target")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "lims_item_target对象", description = "lims_item_target")
public class LimsItemTarget implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "id")
    private String id;
    /**
     * 技术标准
     */
    @Excel(name = "技术标准", width = 15)
    @ApiModelProperty(value = "技术标准")
    private String standardId;
    /**
     * 鉴定大纲
     */
    @Excel(name = "鉴定大纲", width = 15)
    @ApiModelProperty(value = "鉴定大纲")
    private String outlineId;
    /**
     * 鉴定类别
     */
    @Excel(name = "鉴定类别", width = 15)
    @ApiModelProperty(value = "鉴定类别")
    private String categoryId;
    /**
     * 鉴定类型
     */
    @Excel(name = "鉴定类型", width = 15)
    @ApiModelProperty(value = "鉴定类型")
    private String typeId;
    /**
     * 鉴定项目
     */
    @Excel(name = "鉴定项目", width = 15)
    @ApiModelProperty(value = "鉴定项目")
    private String itemId;
    /**
     * 项目名称
     */
    @Excel(name = "项目名称", width = 15)
    @ApiModelProperty(value = "项目名称")
    private String itemName;
    /**
     * 名称
     */
    @Excel(name = "名称", width = 15)
    @ApiModelProperty(value = "名称")
    private String name;
    @Excel(name = "编码", width = 15)
    @ApiModelProperty(value = "编码")
    private String code;
    /**
     * 单位
     */
    @Excel(name = "单位", width = 15)
    @ApiModelProperty(value = "单位")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String unit;
    /**
     * 值类型 0:范围,1:是否,2:有无,3:OK/NG
     */
    @Excel(name = "单位", width = 15)
    @Dict(dicCode = "stand_val_type")
    @ApiModelProperty(value = "值类型")
    private String valType;
    /**
     * 最大值
     */
    @Excel(name = "最大值", width = 15)
    @ApiModelProperty(value = "最大值")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private Double max;
    /**
     * 典型值
     */
    @Excel(name = "典型值", width = 15)
    @ApiModelProperty(value = "典型值")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private Double typ;
    /**
     * 最小值
     */
    @Excel(name = "最小值", width = 15)
    @ApiModelProperty(value = "最小值")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private Double min;
    /**
     * 判定依据
     */
    @Excel(name = "特殊判定值", width = 15)
    @ApiModelProperty(value = "特殊判定值")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String val;
    /**
     * 判定依据
     */
    @Excel(name = "判定依据", width = 15)
    @ApiModelProperty(value = "判定依据")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String judgment;
    /**
     * 是否技术指标
     */
    @Excel(name = "是否技术指标", width = 15)
    @ApiModelProperty(value = "是否证判")
    private Integer isTech;
    /**
     * 是否证判
     */
    @Excel(name = "是否证判", width = 15)
    @ApiModelProperty(value = "是否证判")
    private Integer isJudge;
    /**
     * 启用状态
     */
    @Excel(name = "启用状态", width = 15)
    @ApiModelProperty(value = "启用状态")
    private Integer enabled;
    /**
     * 创建人
     */
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**
     * 创建时间
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**
     * 更新人
     */
    @ApiModelProperty(value = "更新人")
    private String updateBy;
    /**
     * 更新时间
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "更新时间")
    private Date updateTime;
    /**
     * 备注
     */
    @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String remark;
 
 
 
 
}