2026-04-22 00bc2f8702167b926a9fd639c3d2a49f0ddab5b3
src/main/java/com/ruoyi/production/dto/BomImportDto.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,30 @@
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 parentName;
    @Excel(name = "父产品规格")
    private String parentSpec;
    @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;
}