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
| package com.zy.asrs.entity.param;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| @Data
| public class WrkDetlLogAllViewParam {
| @ExcelProperty("数量")
| private Double anfme;
|
| @ExcelProperty("物料编码")
| private String matnr;
|
| @ExcelProperty("年")
| private Integer year;
|
| @ExcelProperty("月")
| private Integer month;
|
| @ExcelProperty("日")
| private Integer day;
|
| @ExcelProperty("仓库")
| private String kun;
|
| @ExcelProperty("入出库类型")
| private String upDown;
| }
|
|