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

86 lines
1.1 KiB
Java

package com.glxp.api.req.collect;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
import java.util.Date;
@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 String updateUser;
}