2026-04-23 a1b154bfd4c5e138d964e1bfdc5a2bcac1e25488
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
package com.ruoyi.production.bean.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class BomImportDto {
    @ApiModelProperty("父产品名称")
    @Excel(name = "父产品名称")
    private String parentName;
 
    @ApiModelProperty("父产品规格")
    @Excel(name = "父产品规格")
    private String parentSpec;
 
    @ApiModelProperty("子产品名称")
    @Excel(name = "子产品名称")
    private String childName;
 
    @ApiModelProperty("子产品规格")
    @Excel(name = "子产品规格")
    private String childSpec;
 
    @ApiModelProperty("单位用量")
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
 
    @ApiModelProperty("工序")
    @Excel(name = "工序")
    private String process;
 
    @ApiModelProperty("备注")
    @Excel(name = "备注")
    private String remark;
}