src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java
@@ -1,38 +1,38 @@
package com.ruoyi.production.bean.dto;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class BomImportDto {
    @ApiModelProperty("父产品名称")
    @Schema(description = "父产品名称")
    @Excel(name = "父产品名称")
    private String parentName;
    @ApiModelProperty("父产品规格")
    @Schema(description = "父产品规格")
    @Excel(name = "父产品规格")
    private String parentSpec;
    @ApiModelProperty("子产品名称")
    @Schema(description = "子产品名称")
    @Excel(name = "子产品名称")
    private String childName;
    @ApiModelProperty("子产品规格")
    @Schema(description = "子产品规格")
    @Excel(name = "子产品规格")
    private String childSpec;
    @ApiModelProperty("单位用量")
    @Schema(description = "单位用量")
    @Excel(name = "单位用量")
    private BigDecimal unitQty;
    @ApiModelProperty("工序")
    @Schema(description = "工序")
    @Excel(name = "工序")
    private String process;
    @ApiModelProperty("备注")
    @Schema(description = "备注")
    @Excel(name = "备注")
    private String remark;
}