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

97 lines
1.4 KiB
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.api.res.collect;
import com.baomidou.mybatisplus.annotation.TableField;
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;
/**
* 赋码状态 0:原始单据未处理1:已分配工位待处理2处理中3已完成4处理异常
*/
private Integer tagStatus;
private String tagMsg;
private String busTypeName;
private String fromTypeName;
private String fromCorpName;
private String workplaceName;
}