New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class ReworkDTO { |
| | | private Long id; |
| | | private String reworkTeam; |
| | | private String orderId; |
| | | private Integer reviewStatus; |
| | | private String reportingWorkId; |
| | | private String reworkId; |
| | | private String processId; |
| | | private Integer orderSort; |
| | | private String project; |
| | | private String batch; |
| | | private String buildingNumber; |
| | | private String productName; |
| | | private Integer technologyNumber; |
| | | private String glassAddress; |
| | | private Integer reworkNum; |
| | | private Double width; |
| | | private Double height; |
| | | private String shape; |
| | | private String reworkType; |
| | | private String reworkReason; |
| | | private String responsibleTeam; |
| | | private String responsiblePersonnel; |
| | | private String responsibleEquipment; |
| | | private String reworkArea; |
| | | private String qualityInspector; |
| | | private String reworkProcesses; |
| | | private String reviewer; |
| | | private LocalDate createTime; |
| | | private LocalDate updateTime; |
| | | private String glassNumber; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |