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; }