yuan
2 天以前 6f0df10fdd0e55e5ed3e31b1720efd25e2bf02fb
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
package com.ruoyi.technology.bean.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
/**
 * BOM 导入导出行:扁平结构,一行 = 成品 + 一个物料规格 + 该物料的消耗工序。
 * 不再包含层级(父项/子项)和单位用量。
 */
@Data
public class BomImportDto {
 
    @Excel(name = "成品产品编号")
    private String productCode;
 
    @Excel(name = "成品产品名称")
    private String productName;
 
    @Excel(name = "成品产品规格")
    private String productSpec;
 
    @Excel(name = "物料产品编号")
    private String materialCode;
 
    @Excel(name = "物料产品名称")
    private String materialName;
 
    @Excel(name = "物料产品规格")
    private String materialSpec;
 
    @Excel(name = "消耗工序")
    private String process;
 
    @Excel(name = "备注")
    private String remark;
}