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
| package com.ruoyi.account.vo;
|
| import com.ruoyi.common.core.annotation.Excel;
| import lombok.Data;
|
| @Data
| public class UserPointExcel {
|
| @Excel(name = "用户名")
| private String name;
| @Excel(name = "手机号")
| private String phone;
| @Excel(name = "变更类型",readConverterExp="4=兑换商品,12=他人赠送,13=赠与他人,16=取消订单,17=充值")
| private Integer type;
|
| @Excel(name = "变更数量")
| private String variablePointStr;
| private Integer variablePoint;
|
|
|
| private Long objectId;
|
| @Excel(name = "订单编号")
| private String objectIdStr;
|
| @Excel(name = "变更时间")
| private String createTime;
| }
|
|