package com.ruoyi.basic.dto;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
/**
|
* 产品批量导入行(三个sheet:原料/半成品/成品)
|
*/
|
@Data
|
public class ProductImportRowDto {
|
|
@Excel(name = "产品父类")
|
private String productParentName;
|
|
@Excel(name = "产品大类")
|
private String productCategoryName;
|
|
@Excel(name = "产品名称")
|
private String productName;
|
|
@Excel(name = "产品编码")
|
private String productCode;
|
|
@Excel(name = "规格型号")
|
private String model;
|
|
@Excel(name = "单位")
|
private String unit;
|
}
|