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
package com.ruoyi.quality.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@Schema(name = "QualityTraceUnqualifiedVo", description = "追溯-不合格处理记录")
public class QualityTraceUnqualifiedVo {
 
    @Schema(description = "不合格记录id")
    private Long id;
 
    @Schema(description = "关联检验单id")
    private Long inspectId;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    private String model;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "不合格数量")
    private BigDecimal quantity;
 
    @Schema(description = "不合格现象")
    private String defectivePhenomena;
 
    @Schema(description = "处理结果 报废/让步放行/返修/返工")
    private String dealResult;
 
    @Schema(description = "处理人")
    private String dealName;
 
    @Schema(description = "处理时间")
    private LocalDate dealTime;
 
    @Schema(description = "处理状态 0待处理/1已处理")
    private Integer inspectState;
 
    @Schema(description = "检验日期")
    private LocalDate checkTime;
}