master
parent
8216e6fcbd
commit
c1a5abea65
@ -1,144 +1,114 @@
|
|||||||
package com.glxp.api.entity.inv;
|
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 lombok.Data;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
/**
|
|
||||||
* 设备领用记录详情
|
|
||||||
*/
|
|
||||||
@Data
|
@Data
|
||||||
@TableName(value = "device_receive_order_detail")
|
|
||||||
public class DeviceReceiveOrderDetailEntity {
|
public class DeviceReceiveOrderDetailEntity {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* id
|
* id
|
||||||
*/
|
*/
|
||||||
@TableId(value = "id", type = IdType.INPUT)
|
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备领用记录号
|
* 设备领用记录号
|
||||||
*/
|
*/
|
||||||
@TableField(value = "orderIdFk")
|
|
||||||
private String orderIdFk;
|
private String orderIdFk;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 原始码
|
* 原始码
|
||||||
*/
|
*/
|
||||||
@TableField(value = "originCode")
|
|
||||||
private String originCode;
|
private String originCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 码
|
* 码
|
||||||
*/
|
*/
|
||||||
@TableField(value = "code")
|
|
||||||
private String code;
|
private String code;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 耗材字典ID
|
* 耗材字典ID
|
||||||
*/
|
*/
|
||||||
@TableField(value = "relId")
|
|
||||||
private Long relId;
|
private Long relId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品DI
|
* 产品DI
|
||||||
*/
|
*/
|
||||||
@TableField(value = "nameCode")
|
|
||||||
private String nameCode;
|
private String nameCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批次号
|
* 批次号
|
||||||
*/
|
*/
|
||||||
@TableField(value = "batchNo")
|
|
||||||
private String batchNo;
|
private String batchNo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生产日期
|
* 生产日期
|
||||||
*/
|
*/
|
||||||
@TableField(value = "productionDate")
|
|
||||||
private String productionDate;
|
private String productionDate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 失效日期
|
* 失效日期
|
||||||
*/
|
*/
|
||||||
@TableField(value = "expireDate")
|
|
||||||
private String expireDate;
|
private String expireDate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 序列号
|
* 序列号
|
||||||
*/
|
*/
|
||||||
@TableField(value = "serialNo")
|
|
||||||
private String serialNo;
|
private String serialNo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 领用仓库
|
* 领用时间
|
||||||
*/
|
*/
|
||||||
@TableField(value = "invCode")
|
private Date createTime;
|
||||||
private String invCode;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 领用货位
|
* 更新时间
|
||||||
*/
|
*/
|
||||||
@TableField(value = "invSpaceCode")
|
private Date updateTime;
|
||||||
private String invSpaceCode;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 接收仓库
|
* 产品名称
|
||||||
*/
|
*/
|
||||||
@TableField(value = "receiveInvCode")
|
private String productName;
|
||||||
private String receiveInvCode;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 接收货位
|
* 仓库名称
|
||||||
*/
|
*/
|
||||||
@TableField(value = "receiveSpaceCode")
|
private String invName;
|
||||||
private String receiveSpaceCode;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 领用时间
|
* 货位名称
|
||||||
*/
|
*/
|
||||||
@TableField(value = "createTime")
|
private String invSpaceName;
|
||||||
private Date createTime;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新时间
|
* 货位名称
|
||||||
*/
|
*/
|
||||||
@TableField(value = "updateTime")
|
private String invSpaceCode;
|
||||||
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";
|
|
||||||
|
|
||||||
public static final String COL_EXPIREDATE = "expireDate";
|
|
||||||
|
|
||||||
public static final String COL_SERIALNO = "serialNo";
|
|
||||||
|
|
||||||
public static final String COL_INVCODE = "invCode";
|
|
||||||
|
|
||||||
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";
|
/**
|
||||||
|
* 部门名称
|
||||||
|
*/
|
||||||
|
private String deptName;
|
||||||
}
|
}
|
Loading…
Reference in New Issue