package com.example.erp.entity.pp; import lombok.Data; import java.time.LocalDate; @Data public class Rework { //自增id private Long id; //返工编号 private String reworkId; //流程卡号 private String processId; //返工类型 private String reworkType; //返工原因 private String reworkReason; //返工工序 private String reworkProcesses; //返工数量 private Integer reworkNum; //返工面积 private Double reworkArea; //返工班组 private String reworkTeam; //审核人 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; }