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/collect/IoCollectOrderResponse.java

84 lines
1.1 KiB
Java

package com.glxp.api.res.collect;
import lombok.Data;
import java.util.Date;
@Data
public class IoCollectOrderResponse {
private Integer id;
/**
* 单据号
*/
private String billNo;
/**
* 单据类型
*/
private String busType;
/**
* 来源业务
*/
private String fromType;
/**
* 来源业务说明
*/
private String fromTypeDesc;
/**
* 往来信息
*/
private String fromCorp;
/**
* 单据时间
*/
private Date billTime;
/**
* 创建时间
*/
private Date createTime;
/**
* 采集时间
*/
private Date collectTime;
/**
* 采集点编码
*/
private String collectCode;
/**
* 工位编码
*/
private String workPlaceCode;
/**
* 备注
*/
private String remark;
/**
* 创建人
*/
private String createUser;
/**
* 更新时间
*/
private Date updateTime;
/**
* 更新人
*/
private String updateUser;
}