1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.ruoyi.basic.dto;
|
| import com.ruoyi.framework.aspectj.lang.annotation.Excel;
| import lombok.Data;
|
| /**
| * @author :yys
| * @date : 2026/3/13 16:00
| */
| @Data
| public class ProductModelExcelItemDto {
|
| /**
| * 规格型号
| */
| @Excel(name = "规格型号")
| private String model;
|
| /**
| * 单位
| */
| @Excel(name = "单位")
| private String unit;
|
| @Excel(name = "产品类型(物料,产品)",readConverterExp = "1=物料,2=产品")
| private Integer productType;
|
| @Excel(name = "图纸编号")
| private String drawingNumber;
|
| }
|
|