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
package com.ruoyi.quality.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@Schema(name = "QualityTraceReverseExportVo", description = "反向追溯导出行(原料批号→受影响成品批号)")
public class QualityTraceReverseExportVo {
 
    @Excel(name = "原料批号")
    @Schema(description = "原料批号")
    private String batchNo;
 
    @Excel(name = "物料")
    @Schema(description = "物料名称")
    private String materialName;
 
    @Excel(name = "物料规格")
    @Schema(description = "物料规格")
    private String materialModel;
 
    @Excel(name = "单位")
    @Schema(description = "单位")
    private String unit;
 
    @Excel(name = "供应商")
    @Schema(description = "供应商")
    private String supplierName;
 
    @Excel(name = "采购合同号")
    @Schema(description = "采购合同号")
    private String contractNo;
 
    @Excel(name = "采购日期", width = 20, dateFormat = "yyyy-MM-dd")
    @Schema(description = "采购日期")
    private LocalDate entryDate;
 
    @Excel(name = "原料检验结论")
    @Schema(description = "原料检验结论")
    private String materialCheckResult;
 
    @Excel(name = "生产订单号")
    @Schema(description = "生产订单号")
    private String npsNo;
 
    @Excel(name = "成品")
    @Schema(description = "成品 名称/规格")
    private String finishedProduct;
 
    @Excel(name = "领用数量")
    @Schema(description = "该订单领用被查批号的数量")
    private BigDecimal pickedQty;
 
    @Excel(name = "产出成品批号")
    @Schema(description = "该订单产出的成品批号,多个以/分隔")
    private String finishedBatchNos;
}