|
|
|
@ -1,112 +1,160 @@
|
|
|
|
|
package com.glxp.api.entity.inv;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "device_receive_order_detail")
|
|
|
|
|
public class DeviceReceiveOrderDetailEntity {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* id
|
|
|
|
|
*/
|
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备领用记录号
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "orderIdFk")
|
|
|
|
|
private String orderIdFk;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 原始码
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "originCode")
|
|
|
|
|
private String originCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 码
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "code")
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 耗材字典ID
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "relId")
|
|
|
|
|
private Long relId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 产品DI
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "nameCode")
|
|
|
|
|
private String nameCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批次号
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "batchNo")
|
|
|
|
|
private String batchNo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生产日期
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "productionDate")
|
|
|
|
|
private String productionDate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 失效日期
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "expireDate")
|
|
|
|
|
private String expireDate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 序列号
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "serialNo")
|
|
|
|
|
private String serialNo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 领用时间
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "createTime")
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新时间
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "updateTime")
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
|
|
|
|
|
|
public static final String COL_ORDERIDFK = "orderIdFk";
|
|
|
|
|
|
|
|
|
|
public static final String COL_ORIGINCODE = "originCode";
|
|
|
|
|
|
|
|
|
|
public static final String COL_CODE = "code";
|
|
|
|
|
|
|
|
|
|
public static final String COL_RELID = "relId";
|
|
|
|
|
|
|
|
|
|
public static final String COL_NAMECODE = "nameCode";
|
|
|
|
|
|
|
|
|
|
public static final String COL_BATCHNO = "batchNo";
|
|
|
|
|
|
|
|
|
|
public static final String COL_PRODUCEDATE = "produceDate";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 产品名称
|
|
|
|
|
*/
|
|
|
|
|
private String productName;
|
|
|
|
|
|
|
|
|
|
public static final String COL_EXPIREDATE = "expireDate";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 仓库名称
|
|
|
|
|
*/
|
|
|
|
|
private String invName;
|
|
|
|
|
|
|
|
|
|
public static final String COL_SERIALNO = "serialNo";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 货位名称
|
|
|
|
|
*/
|
|
|
|
|
private String invSpaceName;
|
|
|
|
|
|
|
|
|
|
public static final String COL_INVCODE = "invCode";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 货位名称
|
|
|
|
|
*/
|
|
|
|
|
private String invSpaceCode;
|
|
|
|
|
|
|
|
|
|
public static final String COL_INVSPACECODE = "invSpaceCode";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 注册/备案凭证号
|
|
|
|
|
*/
|
|
|
|
|
private String zczbhhzbapzbh;
|
|
|
|
|
|
|
|
|
|
public static final String COL_RECEIVEINVCODE = "receiveInvCode";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生产厂家
|
|
|
|
|
*/
|
|
|
|
|
private String ylqxzcrbarmc;
|
|
|
|
|
|
|
|
|
|
public static final String COL_RECEIVESPACECODE = "receiveSpaceCode";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 规格型号
|
|
|
|
|
*/
|
|
|
|
|
private String ggxh;
|
|
|
|
|
|
|
|
|
|
public static final String COL_CREATETIME = "createTime";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否可以自定义序列号
|
|
|
|
|
*/
|
|
|
|
|
private Boolean editSerialNo;
|
|
|
|
|
|
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门名称
|
|
|
|
|
*/
|
|
|
|
|