New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class YieldDTO { |
| | | @ExcelProperty("工序") |
| | | private String process; |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("完工面积") |
| | | private String finishedArea; |
| | | @ExcelProperty("次破面积") |
| | | private String brokenArea; |
| | | @ExcelProperty("总面积") |
| | | private String area; |
| | | @ExcelProperty("成品率") |
| | | private String finished; |
| | | } |