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
32
33
34
35
36
37
38
39
40
| package com.ruoyi.basic.dto;
|
| import com.ruoyi.framework.aspectj.lang.annotation.Excel;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| /**
| * <br>
| * 产品导出模板
| * </br>
| *
| * @author deslrey
| * @version 1.0
| * @since 2026/02/10 14:39
| */
| @Data
| public class ProductModelExportDto {
|
| @Excel(name = "规格型号")
| private String model;
|
| @Excel(name = "单位")
| private String unit;
|
| /**
| * 有效期
| */
| @Excel(name = "有效期(年)")
| private BigDecimal validityPeriod;
|
| /**
| * 备案凭证号
| */
| @Excel(name = "备案凭证号")
| private String filingCertificateNo;
|
| @Excel(name = "UID码")
| private String uidNo;
| }
|
|