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 parentCode;
|
|
@Excel(name = "父项产品名称")
|
private String parentName;
|
|
@Excel(name = "父项产品规格")
|
private String parentSpec;
|
|
@Excel(name = "子项产品编号")
|
private String childCode;
|
|
@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;
|
}
|