New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class PatchLog { |
| | | //自增id |
| | | private Long id; |
| | | //补片编号 |
| | | private String patchId; |
| | | //流程卡号 |
| | | private String processId; |
| | | //补片类型 |
| | | private String patchType; |
| | | //补片原因 |
| | | private String patchReason; |
| | | //补片工序 |
| | | private String patchProcesses; |
| | | //补片数量 |
| | | private Integer patchNum; |
| | | //补片面积 |
| | | private Double patchArea; |
| | | //补片班组 |
| | | private String patchTeam; |
| | | //审核人 |
| | | private String reviewer; |
| | | //审核状态 |
| | | private Integer reviewStatus; |
| | | //创建时间 |
| | | private LocalDate createTime; |
| | | //修改时间 |
| | | private LocalDate updateTime; |
| | | |
| | | private String orderId; |
| | | private String responsiblePersonnel; |
| | | private String orderSort; |
| | | private Integer technologyNumber; |
| | | private String responsibleTeam; |
| | | private String qualityInspector; |
| | | private String responsibleEquipment; |
| | | private String reportingWorkId; |
| | | |
| | | //外键流程卡表 |
| | | private FlowCard flowCard; |
| | | } |