刘光辉
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
package jnpf.limsEntity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import jnpf.base.entity.SuperEntity;
import lombok.Data;
import java.util.Date;
 
/**
 * 质量标准管理实体类
 * 对应数据库表:lims_quality_manager
 */
@Data
@TableName("lims_quality_manager")
public class LimsQualityManagerEntity  extends SuperEntity<String> {
    /**
     * 主键
     */
    /*@TableId(value = "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_class")
    private String sampleClass;
 
    /**
     * 物料代码
     */
    @TableField("wl_code")
    private String wlCode;
 
    /**
     * 产品名称
     */
    @TableField("sample_name")
    private String sampleName;
 
    /**
     * 生效日期
     */
    @TableField("sx_date")
    private Date sxDate;
 
    /**
     * 检验周期
     */
    @TableField("check_week")
    private String checkWeek;
 
    /**
     * 检验依据
     */
    @TableField("check_yj")
    private String checkYj;
 
    /**
     * 创建用户
     */
    @TableField("creat_user")
    private String creatUser;
 
    /**
     * 创建日期
     */
    @TableField("creat_date")
    private Date creatDate;
 
    /**
     * 规格
     */
    @TableField("spec")
    private String spec;
 
    /**
     * 标准来源
     */
    @TableField("bz_source")
    private String bzSource;
 
    /**
     * 版本号
     */
    @TableField("bz_version")
    private String bzVersion;
 
    /**
     * 是否属于稳定性方案
     */
    @TableField("is_wk")
    private String isWk;
 
    /**
     * 存放条件
     */
    @TableField("cftj")
    private String cftj;
 
    /**
     * 有效期
     */
    @TableField("yxq")
    private String yxq;
 
    /**
     * 生成单位
     */
    @TableField("creat_unit")
    private String creatUnit;
 
    /**
     * 供样单位
     */
    @TableField("supplier")
    private String supplier;
 
    /**
     * 备注
     */
    @TableField("note")
    private String note;
 
    /**
     * 包装规格
     */
    @TableField("pack_spec")
    private String packSpec;
}