liyong
15 小时以前 d1a1479a09632377e35d877361318791ed5dad7c
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
package com.ruoyi.production.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class BomImportDto {
 
    @Excel(name = "父项产品编号")
    private String parentCode;
 
    @Excel(name = "父项产品名称")
    private String parentName;
 
    @Excel(name = "父项产品规格")
    private String parentSpec;
 
    @Excel(name = "子项产品编号")
    private String childCode;
 
    @Excel(name = "子项产品名称")
    private String childName;
 
    @Excel(name = "子项产品规格")
    private String childSpec;
 
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
 
    @Excel(name = "投料工序")
    private String process;
 
    @Excel(name = "备注")
    private String remark;
}