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