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-third-java/src/main/java/com/glxp/mipsdl/req/base/UdiwmsOrderRequest.java

69 lines
999 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.mipsdl.req.base;
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 String operUser; //
/**
* 单据详情数组
*/
private List<UdiwmsOrderDetailRequest> item;
}