刘光辉
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
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
package jnpf.limsEntity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
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.SuperEntity;
import lombok.Data;
import java.util.Date;
 
/**
 * 样品检验信息实体类
 * 对应数据库表:lims_sample_info
 */
@Data
@TableName("lims_sample_info")
public class LimsSampleInfoEntity {
    /**
     * 主键
     */
    @TableId(value = "f_id") // 标记数据库主键字段
    @JsonProperty("f_id")
    private String id;
 
    @TableField(
            value = "f_tenant_id",
            fill = FieldFill.INSERT_UPDATE
    )
    private String tenantId;
 
    /**
     * 产品类型
     */
    @TableField("q_type")
    private String qType;
 
    /**
     * 物料代码
     */
    @TableField("wl_code")
    private String wlCode;
 
    /**
     * 样品名称
     */
    @TableField("sample_name")
    private String sampleName;
 
    /**
     * 规格
     */
    @TableField("spec")
    private String spec;
 
    /**
     * 包装规格
     */
    @TableField("pack_spec")
    private String packSpec;
 
    /**
     * 批号
     */
    @TableField("batchno")
    private String batchno;
 
    /**
     * 检验类型
     */
    @TableField("check_type")
    private String checkType;
 
    /**
     * 检验数量
     */
    @TableField("check_num")
    private String checkNum;
 
    /**
     * 检验依据
     */
    @TableField("check_gist")
    private String checkGist;
 
    /**
     * 级别
     */
    @TableField("check_level")
    private String checkLevel;
 
    /**
     * 生产商
     */
    @TableField("producer")
    private String producer;
 
    /**
     * 供应商
     */
    @TableField("supplier")
    private String supplier;
 
    /**
     * 检验项目
     */
    @TableField("check_item")
    private String checkItem;
 
    /**
     * 有效期至
     */
    @TableField("expirydate")
    private Date expirydate;
 
    /**
     * 样品编号
     */
    @TableField("sample_code")
    private String sampleCode;
 
    /**
     * 检验流水号
     */
    @TableField("apply_flow")
    private String applyFlow;
 
    /**
     * 样品状态
     */
    @TableField("sample_status")
    private String sampleStatus;
 
    /**
     * 请检人
     */
    @TableField("apply_user")
    private String applyUser;
 
    /**
     * 请检时间
     */
    @TableField("apply_date")
    private Date applyDate;
 
    /**
     * 检验表ID
     */
    @TableField("apply_id")
    private String applyId;
 
    /**
     * 请检数量单位
     */
    @TableField("check_num_unit")
    private String checkNumUnit;
 
    /**
     * 删除用户
     */
    @TableField(value = "f_delete_user_id")
    private String fDeleteUserId;
 
    /**
     * 删除时间
     */
    @TableField("f_delete_time")
    private Date fDeleteTime;
 
    /**
     * 修改用户
     */
    @TableField(value = "f_last_modify_user_id",fill = FieldFill.UPDATE)
    private String fLastModifyUserId;
    /**
     * 修改时间
     */
    @TableField(value = "f_last_modify_time",fill = FieldFill.UPDATE)
    private Date fLastModifyTime;
 
    /**
     * 创建用户
     */
    @TableField(value = "f_creator_user_id",fill = FieldFill.INSERT)
    private String fCreatorUserId;
 
    /**
     * 创建时间
     */
    @TableField(value = "f_creator_time",fill = FieldFill.INSERT)
    private Date fCreatorTime;
 
    /**
     * 有效标志
     */
    @TableField("f_enabled_mark")
    private Integer fEnabledMark;
 
    /**
     * 质量标准id
     */
    @TableField("zlbz_id")
    private String zlbzId;
}