gongchunyi
5 小时以前 bc116c55a44bc344e5575b5bdd4c2591bc0475aa
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
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 code;
 
    @Excel(name = "父项编号")
    private String parentCode;
 
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
 
    @Excel(name = "投料工序")
    private String process;
 
    @Excel(name = "备注")
    private String remark;
}