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
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.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
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_testing_item
 * @Author: jeecg-boot
 * @Date:   2023-04-20
 * @Version: V1.0
 */
@Data
@TableName("lims_testing_item")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="lims_testing_item对象", description="lims_testing_item")
public class LimsTestingItem implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**id*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "id")
    private String id;
    /**大纲ID*/
    @Excel(name = "大纲ID", width = 15)
    @ApiModelProperty(value = "大纲ID")
    private String typeId;
    /**编号*/
    @Excel(name = "编号", width = 15)
    @ApiModelProperty(value = "编号")
    private Integer num;
    /**编码*/
    @Excel(name = "编码", width = 15)
    @ApiModelProperty(value = "编码")
    private String code;
    /**名称*/
    @Excel(name = "名称", width = 15)
    @ApiModelProperty(value = "名称")
    private String name;
    /**别名*/
    @Excel(name = "别名", width = 15)
    @ApiModelProperty(value = "别名")
    private String alias;
    /**测试说明*/
    @Excel(name = "测试说明", width = 15)
    @ApiModelProperty(value = "测试说明")
    private String description;
    /**测试方法*/
    @Excel(name = "测试方法", width = 15)
    @ApiModelProperty(value = "测试方法")
    private String method;
    /**技术指标*/
    @Excel(name = "技术指标", width = 15)
    @ApiModelProperty(value = "技术指标")
    private String techIndex;
    /**运算方法*/
    @Excel(name = "运算方法", width = 15)
    @ApiModelProperty(value = "运算方法")
    private String operational;
    /**产品类型*/
    @Excel(name = "产品类型", width = 15)
    @ApiModelProperty(value = "产品类型")
    private String prodType;
    /**排序*/
    @Excel(name = "排序", width = 15)
    @ApiModelProperty(value = "排序")
    private Double sort;
    /**是否常规项*/
    @Excel(name = "是否常规项", width = 15)
    @ApiModelProperty(value = "是否常规项")
    private Integer gengeral;
    /**仪器ID*/
    @Excel(name = "仪器ID", width = 15)
    @ApiModelProperty(value = "仪器ID")
    private String instrument;
    /**启用标志*/
    @Excel(name = "启用标志", width = 15)
    @ApiModelProperty(value = "启用标志")
    private String enabled;
    /**状态*/
    @Excel(name = "状态", width = 15)
    @ApiModelProperty(value = "状态")
    private String status;
    /**创建人*/
    @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 = "备注")
    private String remark;
}