自动化立体仓库 - WMS系统
zhangchao
2024-11-04 59f80df1e377e8775969ca4acadfa2eadd6e37ae
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;
}