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

103 lines
1.4 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;
/**
*
*/
11 months ago
private Long workPlaceCode;
/**
*
*/
private String remark;
/**
*
*/
private String createUser;
/**
*
*/
private Date updateTime;
/**
*
*/
11 months ago
private Long updateUser;
private List<Integer> tagStatusList;
private Integer tagStatus;
private String workplaceName;
11 months ago
private Boolean forceFinish;
11 months ago
/**
*
*/
private Boolean confirmGet;
11 months ago
private Boolean confirmFinish;
}