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/inv/InvCountOrderResponse.java

114 lines
1.6 KiB
Java

package com.glxp.api.res.inv;
import lombok.Data;
import java.util.Date;
/**
*
*/
@Data
public class InvCountOrderResponse {
/**
* id
*/
private Integer id;
/**
*
*/
private String orderId;
/**
*
*/
private String deptCode;
/**
*
*/
private String invCode;
/**
*
*/
private String invSpaceCode;
/**
* 使 ,
*/
private String inOrderIds;
/**
* 使 ,
*/
private String outOrderIds;
/**
* 0 1 2
*/
private Integer countType;
/**
* 0 1 2
*/
private Integer status;
/**
* ID
*/
private String createUser;
/**
*
*/
private Date createTime;
/**
*
*/
private Date updateTime;
/**
* ID
*/
private String auditUser;
/**
*
*/
private Date auditTime;
/**
*
*/
private String remark;
/**
*
*/
private String deptName;
/**
*
*/
private String invName;
/**
*
*/
private String invSpaceName;
/**
*
*/
private String createUserName;
/**
*
*/
private String auditUserName;
}