1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.zy.asrs.common.wms.entity;
|
| import lombok.Data;
|
| /**
| * 日出入库次数统计
| * @author admin
| * @date 2018年11月24日
| */
| @Data
| public class ViewInOutBean {
| private String ymd;
| private String sourceStaNo;
| private Long stoQty;
| private Long retQty;
| private Long totalQty;
| private int pageNumber;
| private int pageSize;
| private String beginDate; //查询开始日期
| private String endDate; //查询截止日期
| }
|
|