New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class ProcessToBeCompletedDTO { |
| | | @ExcelProperty("下单时间") |
| | | private LocalDate createTime; |
| | | @ExcelProperty("交货日期") |
| | | private LocalDate deliveryDate; |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("流程卡号") |
| | | private String processId; |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("序号") |
| | | private String orderNumber; |
| | | @ExcelProperty("小片顺序") |
| | | private String technologyNumber; |
| | | @ExcelProperty("单片名称") |
| | | private String glassChild; |
| | | @ExcelProperty("宽") |
| | | private String childWidth; |
| | | @ExcelProperty("高") |
| | | private String childHeight; |
| | | @ExcelProperty("订单数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("单片面积") |
| | | private Double childArea; |
| | | @ExcelProperty("实际面积") |
| | | private Double actualArea; |
| | | @ExcelProperty("已完成数量") |
| | | private Integer completeNum; |
| | | @ExcelProperty("已完成面积") |
| | | private Double completeArea; |
| | | @ExcelProperty("未完成数量") |
| | | private Integer incompleteNum; |
| | | @ExcelProperty("未完成面积") |
| | | private Double incompleteArea; |
| | | @ExcelProperty("成品名称") |
| | | private String productName; |
| | | } |