New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class QualityReportDTO { |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("订单序号") |
| | | private String orderNumber; |
| | | @ExcelProperty("小片顺序") |
| | | private String technologyNumber; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("订单数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("投入数量") |
| | | private Integer quantityMax; |
| | | @ExcelProperty("次破数量") |
| | | private Integer breakageQuantity; |
| | | @ExcelProperty("补片数量") |
| | | private Integer patchNum; |
| | | @ExcelProperty("入库数量") |
| | | private Integer receivedQuantity; |
| | | @ExcelProperty("成品率") |
| | | private String finished; |
| | | } |