gongchunyi
12 小时以前 285fa628a51ccc480ee946d2a1ee5bd13e9ae65a
src/main/java/com/ruoyi/production/dto/BomImportDto.java
@@ -8,11 +8,17 @@
@Data
public class BomImportDto {
    @Excel(name = "编号")
    private String code;
    @Excel(name = "父项产品名称")
    private String parentName;
    @Excel(name = "父项编号")
    private String parentCode;
    @Excel(name = "父项产品规格")
    private String parentSpec;
    @Excel(name = "子项产品名称")
    private String childName;
    @Excel(name = "子项产品规格")
    private String childSpec;
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
@@ -22,4 +28,4 @@
    @Excel(name = "备注")
    private String remark;
}
}