| New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class exportReplenishDTO { |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("补片单号") |
| | | private String patchId; |
| | | @ExcelProperty("报工编号") |
| | | private String reportingWorkId; |
| | | @ExcelProperty("流程卡号") |
| | | private String processId; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("审核人") |
| | | private String reviewer; |
| | | @ExcelProperty("编号") |
| | | private String glassNumber; |
| | | @ExcelProperty("订单序号") |
| | | private Integer orderSort; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("层号") |
| | | private Integer technologyNumber; |
| | | @ExcelProperty("片标记") |
| | | private String glassAddress; |
| | | @ExcelProperty("单片名称") |
| | | private String glassChild; |
| | | @ExcelProperty("数量") |
| | | private Integer patchNum; |
| | | @ExcelProperty("宽") |
| | | private Double width; |
| | | @ExcelProperty("高") |
| | | private Double height; |
| | | @ExcelProperty("形状") |
| | | private String shape; |
| | | @ExcelProperty("报工工序") |
| | | private String patchProcesses; |
| | | @ExcelProperty("补片原因") |
| | | private String patchReason; |
| | | @ExcelProperty("补片类型") |
| | | private String patchType; |
| | | @ExcelProperty("责任信息") |
| | | private String responsiblePersonnel; |
| | | @ExcelProperty("责任设备") |
| | | private String responsibleEquipment; |
| | | @ExcelProperty("责任班组") |
| | | private String responsibleTeam; |
| | | @ExcelProperty("面积") |
| | | private String patchArea; |
| | | @ExcelProperty("制单时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createTime; |
| | | @ExcelProperty("审核时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime updateTime; |
| | | |
| | | |
| | | } |