New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class WorkInProgressDTO { |
| | | @ExcelProperty("工序") |
| | | private String thisProcess; |
| | | @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 shape; |
| | | @ExcelProperty("工艺流程") |
| | | private String process; |
| | | @ExcelProperty("订单数") |
| | | private Integer quantity; |
| | | @ExcelProperty("宽") |
| | | private String childWidth; |
| | | @ExcelProperty("高") |
| | | private String childHeight; |
| | | @ExcelProperty("库存数") |
| | | private Integer stockNum; |
| | | @ExcelProperty("库存面积") |
| | | private Double stockArea; |
| | | @ExcelProperty("成品名称") |
| | | private String productName; |
| | | @ExcelProperty("弯钢半径") |
| | | private String bendRadius; |
| | | } |