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
41
| package cc.mrbird.febs.others.entity;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 导入导出测试,Eximport = export + import
| *
| * @author MrBird
| */
| @Data
| @TableName("t_eximport")
| public class Eximport {
|
| /**
| * 字段1
| */
| @ExcelProperty(value = "字段1")
| private String field1;
|
| /**
| * 字段2
| */
| @ExcelProperty(value = "字段2")
| private Integer field2;
|
| /**
| * 字段3
| */
| @ExcelProperty(value = "字段3")
| private String field3;
|
| /**
| * 创建时间
| */
| private Date createTime;
|
| }
|
|