| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.format.NumberFormat; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class ViewWorkCountInView { |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("入库日期") |
| | | private String oneday; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("物料号") |
| | | private String matnr; |
| | | |
| | | @ColumnWidth(50) |
| | | @ExcelProperty("物料名称") |
| | | private String maktx; |
| | | private String anfme; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("数量") |
| | | private Double anfme; |
| | | } |