package com.ruoyi.basic.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @author :yys
|
* @date : 2026/3/13 15:34
|
*/
|
@Data
|
public class ProductModelExcelDto {
|
|
private String index;
|
|
@Excel(name = "序号")
|
private String number;
|
|
@Excel(name = "产品名称")
|
private String productName;
|
/**
|
* 规格型号
|
*/
|
@Excel(name = "规格型号")
|
private String model;
|
|
/**
|
* 单位
|
*/
|
@Excel(name = "单位")
|
private String unit;
|
|
@Excel(name = "产品类型(物料,产品)",readConverterExp = "1=物料,2=产品")
|
private Integer productType;
|
|
@Excel(name = "图纸编号")
|
private String drawingNumber;
|
|
private List<ProductModelExcelDto> children;
|
|
private List<ProductModelExcelItemDto> items;
|
|
}
|