刘光辉
14 小时以前 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
package jnpf.limsEntity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import jnpf.base.entity.SuperEntity;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
import java.util.Date;
 
/**
 * 样品检验实体类
 */
@Data
@TableName("lims_apply_test")
public class LimsApplyTestEntity  extends SuperEntity<String> {
    /**
     * 产品类型
     */
    @TableField("q_type")
    @JsonProperty("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("f_id")
    private String fId;*/
 
    /**
     * 租户id
     */
    /*@TableField("f_tenant_id")
    private String fTenantId;*/
 
    /**
     * 流程id
     */
    /*@TableField("f_flow_id")
    private String fFlowId;*/
 
    /**
     * 乐观锁
     */
    /*@TableField("f_version")
    private Integer fVersion;*/
 
    /**
     * 流程任务主键
     */
    /*@TableField("f_flow_task_id")
    private String fFlowTaskId;*/
 
    /**
     * 流程任务状态
     */
   /* @TableField("f_flow_state")
    private Integer fFlowState;*/
 
    /**
     * 样品编号
     */
    @TableField("sample_code")
    private String sampleCode;
 
    /**
     * 检验流水号
     */
    @TableField("apply_flow")
    private String applyFlow;
 
    /**
     * 样品ID
     */
    @TableField("sample_id")
    private String sampleId;
 
    /**
     * 请检状态
     */
    @TableField("apply_status")
    private String applyStatus;
 
    /**
     * 请检人
     */
    @TableField("apply_user")
    private String applyUser;
 
    /**
     * 请检时间
     */
    @TableField("apply_date")
    private Date applyDate;
 
    /**
     * 质量标准Id
     */
    @TableField("zlbz_id")
    private String zlbzId;
 
    /**
     * 备注
     */
    @TableField("note")
    private String note;
 
    /**
     * 检验数量单位
     */
    @TableField("check_num_unit")
    private String checkNumUnit;
 
    /**
     * 电子签名
     */
    @TableField("signature")
    private String signature;
}