1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.account.excel;
|
| import com.ruoyi.common.core.annotation.Excel;
| import lombok.Data;
|
| @Data
| public class BalanceChangeRecordEX {
| @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;
| }
|
|