New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class OrderPlanDecompositionDTO { |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("订单数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("订单面积") |
| | | private Double area; |
| | | @ExcelProperty("分架时间") |
| | | private LocalDate createTime; |
| | | @ExcelProperty("切割开始时间") |
| | | private LocalDate startTime; |
| | | @ExcelProperty("完工数量") |
| | | private Integer completionsNum; |
| | | @ExcelProperty("入库数量") |
| | | private Integer receivedQuantity; |
| | | @ExcelProperty("未入库数量") |
| | | private Integer receivedNo; |
| | | @ExcelProperty("是否清单") |
| | | private Integer accomplish; |
| | | @ExcelProperty("生产天数") |
| | | private Integer daysDifference; |
| | | |
| | | |
| | | } |