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
| package com.gkhy.hazmat.common.excel;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Getter;
| import lombok.Setter;
|
| @Getter
| @Setter
| public class SecientificExcelData {
|
| @ExcelProperty("序号")
| private Integer index;
|
| @ExcelProperty("品名")
| private String secientificName;
|
| @ExcelProperty("别名")
| private String aliasName;
|
| @ExcelProperty("CAS号")
| private String cas;
|
| @ExcelProperty("危险性类别")
| private String riskType;
|
| @ExcelProperty("备注")
| private String remark;
|
| @ExcelProperty("编号")
| private Integer peculiarityNumber;
| }
|
|