You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
2.0 KiB
Java
145 lines
2.0 KiB
Java
package com.glxp.api.res.inv;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class InvPreinDetailResponse {
|
|
|
|
|
|
private Integer id;
|
|
|
|
/**
|
|
* 条码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 单据号外键
|
|
*/
|
|
private String orderId;
|
|
|
|
/**
|
|
* 最小销售表示
|
|
*/
|
|
private String nameCode;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
private String batchNo;
|
|
|
|
/**
|
|
* 生产日期
|
|
*/
|
|
private String produceDate;
|
|
|
|
/**
|
|
* 失效日期
|
|
*/
|
|
private String expireDate;
|
|
|
|
/**
|
|
* 序列号
|
|
*/
|
|
private String serialNo;
|
|
|
|
/**
|
|
* 耗材字典主键
|
|
*/
|
|
private Long relId;
|
|
|
|
/**
|
|
* 扫码数量
|
|
*/
|
|
private int count;
|
|
|
|
|
|
private Integer originReCount;
|
|
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
private int reCount;
|
|
private Integer status;
|
|
private String productName;
|
|
private String ggxh;
|
|
private String manufactory;
|
|
private String zczbhhzbapzbh;
|
|
private String auditTime;
|
|
private String billNo;
|
|
private String invName;
|
|
private String measname;
|
|
private String fromName;
|
|
|
|
|
|
/**
|
|
* 供应商
|
|
*/
|
|
private String supId;
|
|
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 仓库编码
|
|
*/
|
|
private String invCode;
|
|
|
|
/**
|
|
* 货位编码
|
|
*/
|
|
private String invSpaceCode;
|
|
|
|
/**
|
|
* 采购类型
|
|
*/
|
|
private Integer purchaseType;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 单据出入库类型
|
|
*/
|
|
private String mainAction;
|
|
|
|
/**
|
|
* 单据类型编码
|
|
*/
|
|
private String action;
|
|
|
|
/**
|
|
* 单据类型名称
|
|
*/
|
|
private String actionName;
|
|
|
|
/**
|
|
* 出入库类型中文字符串
|
|
*/
|
|
private String mainActionStr;
|
|
|
|
/**
|
|
* 入库数量
|
|
*/
|
|
private Integer inCount;
|
|
|
|
/**
|
|
* 出库数量
|
|
*/
|
|
private Integer outCount;
|
|
|
|
/**
|
|
* 单据日期
|
|
*/
|
|
private String orderTime;
|
|
|
|
|
|
}
|