gongchunyi
3 小时以前 78e8144e8713af9e6b3aa14ff1f8b4091d698616
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.basic.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
@Data
public class ProductModelDataExportDto {
 
    @Excel(name = "产品大类")
    private String productCategoryName;
 
    @Excel(name = "产品名称")
    private String productName;
 
    @Excel(name = "规格型号")
    private String model;
 
    @Excel(name = "单位")
    private String unit;
}