| 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.LocalDateTime; |
| | | |
| | | @Data |
| | | public class TeamOutputDTO { |
| | | @ExcelProperty("报工时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime reportingWorkTime; |
| | | @ExcelProperty("报工工序") |
| | | private String thisProcess; |
| | | @ExcelProperty("报工班组") |
| | | private String teamsGroupsName; |
| | | @ExcelProperty("订单编号") |
| | | private String orderId; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("流程卡号") |
| | | private String processId; |
| | | @ExcelProperty("序号") |
| | | private Integer orderNumber; |
| | | @ExcelProperty("宽") |
| | | private Integer width; |
| | | @ExcelProperty("高") |
| | | private Integer height; |
| | | // @ExcelProperty("形状") |
| | | // private String shape; |
| | | // @ExcelProperty("厚度") |
| | | // private String thickness; |
| | | @ExcelProperty("磨边类型") |
| | | private String edgingType; |
| | | @ExcelProperty("完工数量") |
| | | private Integer completedQuantity; |
| | | @ExcelProperty("完工面积") |
| | | private Double area; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("编号") |
| | | private String code; |
| | | @ExcelProperty("审核人") |
| | | private String reviewed; |
| | | @ExcelProperty("审核时间") |
| | | private String examineTime; |
| | | @ExcelProperty("在制品名称") |
| | | private String workProcessName; |
| | | @ExcelProperty("报工设备") |
| | | private String deviceName; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("订单类型") |
| | | private String orderType; |
| | | @ExcelProperty("在制品厚度") |
| | | private String thicknessSum; |
| | | @ExcelProperty("平方毫米") |
| | | private String thicknessArea; |
| | | } |