6 天以前 1e123568c2f561013f5636e45dc0db30b17a3517
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.ruoyi.quality.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
 
@Data
@Schema(name = "QualityTraceInspectVo", description = "追溯-检验单")
public class QualityTraceInspectVo {
 
    @Schema(description = "检验单id")
    private Long inspectId;
 
    @Schema(description = "关联报工单id(报工检验时有值)")
    private Long productMainId;
 
    @Schema(description = "检验类型 0原料/1过程/2出厂")
    private Integer inspectType;
 
    @Schema(description = "检验类型名称")
    private String inspectTypeName;
 
    @Schema(description = "检验工序")
    private String process;
 
    @Schema(description = "检验员")
    private String checkName;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    private String model;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "检验数量")
    private BigDecimal quantity;
 
    @Schema(description = "合格数量")
    private BigDecimal qualifiedQuantity;
 
    @Schema(description = "不合格数量")
    private BigDecimal unqualifiedQuantity;
 
    @Schema(description = "检验结论")
    private String checkResult;
 
    @Schema(description = "检验日期")
    private LocalDate checkTime;
 
    @Schema(description = "提交状态 0未提交/1已提交")
    private Integer inspectState;
 
    @Schema(description = "不合格现象")
    private String defectivePhenomena;
 
    @Schema(description = "该检验单产生的不合格处理记录")
    private List<QualityTraceUnqualifiedVo> unqualifiedList = new ArrayList<>();
}