huliguo
2025-04-23 f2070facdb5715e7349df69cfe257289c680d292
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
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;
 
 
    @Excel(name = "订单编号")
    private Long objectId;
 
    @Excel(name = "变更时间")
    private String createTime;
}