guoyuji
2024-03-14 1175097e7c6a7fcb9aed0a46aad691450f898d97
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
47
48
package com.example.erp.entity.pp;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
 
 
@Data
public class DamageDetails {
    @TableId(type = IdType.AUTO)
    //自增ID
    private Integer id;
    //报工编号
    private String reportingWorkId;
    //流程卡号
    private  String processId;
    //产品序号
    private String orderNumber;
    //工艺确认序号
    private String technologyNumber;
    //次破数量
    private Integer breakageQuantity;
    //次破原因
    private String breakageReason;
    //类型
    private String breakageType;
    //可利用
    private Boolean available;
    //退回工序
    private String returnProcess;
    //责任工序
    private String responsibleProcess;
    //责任人员
    private String responsiblePersonnel;
    //责任班组
    private String responsibleTeam;
    //责任设备
    private String responsibleEquipment;
    //质检员
    private String qualityInspector;
    //补片状态
    private Integer patchStatus;
    //质检状态
    private Integer qualityInsStatus;
    //数量
    private Integer quantity;
}