廖井涛
2024-03-06 ed436058f1ae782a0c18e28e134c6099f4e5e951
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
}