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;
|
}
|