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
| package com.ruoyi.account.excel;
|
| import com.ruoyi.common.core.annotation.Excel;
| import lombok.Data;
|
| @Data
| public class UserPointEx {
|
| /**
| * 用户名称
| */
| @Excel(name = "用户名称")
| private String userName;
|
| /**
| * 联系电话
| */
| @Excel(name = "联系电话")
| private String phone;
|
| /**
| * 变更类型
| */
| @Excel(name = "变更类型")
| private String type;
|
| /**
| * 变更时间
| */
| @Excel(name = "变更时间")
| private String changeTime;
|
| /**
| * 变更数量
| */
| @Excel(name = "变更数量")
| private String changeNum;
| }
|
|