2026-04-23 41ab7abd0b0ec0fefb03b60bbaf42c02fbda666b
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.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class BomImportDto {
    @Schema(description = "父产品名称")
    @Excel(name = "父产品名称")
    private String parentName;
 
    @Schema(description = "父产品规格")
    @Excel(name = "父产品规格")
    private String parentSpec;
 
    @Schema(description = "子产品名称")
    @Excel(name = "子产品名称")
    private String childName;
 
    @Schema(description = "子产品规格")
    @Excel(name = "子产品规格")
    private String childSpec;
 
    @Schema(description = "单位用量")
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
 
    @Schema(description = "工序")
    @Excel(name = "工序")
    private String process;
 
    @Schema(description = "备注")
    @Excel(name = "备注")
    private String remark;
}