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.
40 lines
971 B
Java
40 lines
971 B
Java
package com.glxp.api.req.inout;
|
|
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class IoOrderMutiRequest extends ListPageRequest {
|
|
|
|
private Long id;
|
|
private String orderIdFk;
|
|
private String udiCode;
|
|
private String relIdFk;
|
|
private String mark;
|
|
private Integer totalCount;
|
|
private Integer useCount;
|
|
private Integer reCount;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
private String createUser;
|
|
private String updateUser;
|
|
private String reamrk;
|
|
private String nameCode;
|
|
private String batchNo;
|
|
private String produceDate;
|
|
private String expireDate;
|
|
private String serialNo;
|
|
private String supId;
|
|
private String auditUser;
|
|
private Date auditTime;
|
|
private String cpmctymc;
|
|
private String ggxh;
|
|
private Integer status;
|
|
private String createUserName;
|
|
private String startDate;
|
|
private String endDate;
|
|
|
|
}
|