New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class ProductionScheduleDTO { |
| | | @ExcelProperty("订单序号") |
| | | private String orderNumber; |
| | | @ExcelProperty("形状") |
| | | private String shape; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("宽") |
| | | private String childWidth; |
| | | @ExcelProperty("高") |
| | | private String childHeight; |
| | | @ExcelProperty("数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("小片顺序") |
| | | private String technologyNumber; |
| | | @ExcelProperty("单片名称") |
| | | private String glassChild; |
| | | @ExcelProperty("入库数量") |
| | | private Integer inventoryNum; |
| | | @ExcelProperty("入库面积") |
| | | private Double inventoryArea; |
| | | @ExcelProperty("发货数量") |
| | | private Integer shippedQuantity; |
| | | @ExcelProperty("发货面积") |
| | | private Double area; |
| | | } |