New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class TaskCompletionStatusDTO { |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("订单数量") |
| | | private String quantity; |
| | | @ExcelProperty("订单面积") |
| | | private String area; |
| | | @ExcelProperty("发货数量") |
| | | private String shippedQuantity; |
| | | @ExcelProperty("发货面积") |
| | | private String shippedArea; |
| | | } |