gongchunyi
昨天 f65f8494fd2e292e5c15c02112fa9217ce655361
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;
}