1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.zy.asrs.entity;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| @Data
| public class ViewWorkCountInView {
| @ExcelProperty("入库日期")
| private String oneday;
|
| @ExcelProperty("物料号")
| private String matnr;
|
| @ExcelProperty("日期标题")
| private String maktx;
|
| @ExcelProperty("数量")
| private String anfme;
| }
|
|