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

95 lines
1.3 KiB
Java

package com.glxp.api.req.collect;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class CollectOrderRequest extends ListPageRequest {
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 Long updateUser;
private List<Integer> tagStatusList;
private Integer tagStatus;
private String workplaceName;
private Boolean forceFinish;
}