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 PatchLogAddDTO { |
| | | private String orderId; |
| | | private LocalDate reportingWorkTime; |
| | | private String reportingWorkId; |
| | | private String productionId; |
| | | private String processId; |
| | | private String project; |
| | | private String batch; |
| | | private Long reviewer; |
| | | private String buildingNumber; |
| | | private Integer orderSort; |
| | | private String productName; |
| | | private Integer technologyNumber; |
| | | private String glassAddress; |
| | | private Integer patchNum; |
| | | private Double width; |
| | | private Double height; |
| | | private String shape; |
| | | private String responsibleProcess; |
| | | private String patchProcesses; |
| | | private Integer breakageQuantity; |
| | | private String patchReason; |
| | | private String patchType; |
| | | private String responsiblePersonnel; |
| | | private String responsibleEquipment; |
| | | private String responsibleTeam; |
| | | private String patchArea; |
| | | private String qualityInspector; |
| | | |
| | | |
| | | } |