InventoryDetailQuery.java
643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.huaheng.api.mes.domain;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import lombok.Data;
/** 库存查询
* @author xcq
*/
@Data
public class InventoryDetailQuery {
/**
* 库存详情
*/
private InventoryDetail inventoryDetail = new InventoryDetail();
/**
* 页码
*/
private Integer pageNum = 1;
/**
* 页面数量
*/
private Integer pageSize = 20;
/**
* 开始时间
*/
private String createdBegin;
/**
* 结束时间
*/
private String createdEnd;
/**
* 区域
*/
private String area;
}