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/req/thrsys/UdiwmsOrderRequest.java

66 lines
931 B
Java

package com.glxp.api.req.thrsys;
import lombok.Data;
import java.util.List;
@Data
public class UdiwmsOrderRequest {
/**
*
*/
private String billNo;
/**
*
*/
private String billDate;
/**
* ID
*/
private String corpId;
/**
* ,0.1.
*/
private String billFlag;
/**
* 1:2:
*/
private Integer inoutType;
/**
* /
*/
private String billType;
/**
*
*/
private String corpName;
/**
*
*/
private String locInvCode;
/**
*
*/
private String locInvName;
/**
*
*/
private String remark;
/**
*
*/
private List<UdiwmsOrderDetailRequest> item;
}