刘光辉
15 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.limsEntity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import jnpf.base.entity.SuperBaseEntity;
import jnpf.base.entity.SuperEntity;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 检验项目实体类
 * 对应数据库表:lims_apply_test_item
 */
@Data
@TableName("lims_apply_test_item")
public class LimsApplyTestItemEntity {
    /**
     * 检查班组
     */
    @TableField("check_team")
    private String checkTeam;
 
    /**
     * 项目检测周期
     */
    @TableField("item_check_week")
    private String itemCheckWeek;
 
    /**
     * 是否出具报告
     */
    @TableField("is_report")
    private String isReport;
 
    /**
     * 排序(decimal(38,15) 适配为 BigDecimal)
     */
    @TableField("item_sort")
    private BigDecimal itemSort;
 
    /**
     * 项目名称
     */
    @TableField("item_name")
    private String itemName;
 
    /**
     * 项目编码
     */
    @TableField("item_code")
    private String itemCode;
 
    /**
     * 数据类型
     */
    @TableField("data_type")
    private String dataType;
 
    /**
     * 标准规定
     */
    @TableField("bzgd")
    private String bzgd;
 
    /**
     * 分析类型(字段名 parent_id,注释为分析类型)
     */
    @TableField("parent_id")
    private String parentId;
 
    /**
     * 标准上限
     */
    @TableField("bz_sx")
    private String bzSx;
 
    /**
     * 标准下限
     */
    @TableField("bz_xx")
    private String bzXx;
 
    /**
     * 质量标准检验项目ID
     */
    @TableField("check_team_id")
    private String checkTeamId;
 
    /**
     * 默认单位(独立字段,与 popupSelectFieldc4331b 区分)
     */
    @TableField("mr_unit")
    private String mrUnit;
 
    /**
     * 主键
     */
    @TableId("f_id")
    @JsonProperty("f_id")
    private String id;
 
    /**
     * 租户id
     */
    @TableField("f_tenant_id")
    private String fTenantId;
 
    /**
     * 流程id
     */
    @TableField("f_foreign_id")
    private String fForeignId;
}