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.
udi-wms-java/src/main/java/com/glxp/api/res/inout/IoCodeResponse.java

144 lines
1.9 KiB
Java

package com.glxp.api.res.inout;
import lombok.Data;
import java.util.Date;
/**
* VO
*/
@Data
public class IoCodeResponse {
private Integer id;
/**
* UDI
*/
private String code;
/**
*
*/
private String mainAction;
/**
*
*/
private String action;
/**
*
*/
private String orderId;
/**
*
*/
private String corpOrderId;
/**
* DI
*/
private String nameCode;
/**
*
*/
private String batchNo;
/**
*
*/
private String produceDate;
/**
*
*/
private String expireDate;
/**
*
*/
private String serialNo;
/**
*
*/
private String packageLevel;
/**
* ID
*/
private String supId;
/**
* ID
*/
private Long relId;
/**
*
*/
private Integer count;
/**
*
*/
private Integer reCount;
/**
*
*/
private String deptCode;
/**
*
*/
private String invCode;
/**
*
*/
private String warehouseCode;
/**
*
*/
private Date updateTime;
/**
*
*/
private Date createTime;
/**
*
*/
private Integer status;
/**
*
*/
private String productName;
/**
*
*/
private String supName;
/**
*
*/
private String deptName;
/**
*
*/
private String invName;
/**
*
*/
private String warehouseName;
}