jack
2024-04-22 26581a43d52f6f6e62607c51b8224cdc50191a80
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.nq.pojo;
 
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.data.annotation.Transient;
 
import java.math.BigDecimal;
 
import java.util.Date;
 
 
@Data
public class UserRecharge {
 
    @TableId(type= IdType.AUTO)
    private Integer id;
    @Excel(name = "用户id")
    private Integer userId;
    @Excel(name = "用户名")
    private String nickName;
    @Excel(name = "代理id")
    private Integer agentId;
    @Excel(name = "订单号")
    private String orderSn;
 
    private String paySn;
    @Excel(name = "充值渠道" ,replace = { "支付宝_0", "对公打款_1" })
    private String payChannel;
 
    @Excel(name = "充值金额")
    private BigDecimal payAmt;
    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2" })
    private Integer orderStatus;
 
    private String orderDesc;
 
    @Excel(name = "申请时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date addTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "支付时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    private Date payTime;
    /*支付通道主键id*/
    private Integer payId;
    /**
     * 手机号码
     * */
    @Transient
    private String userPhone;
    private String img;
    private String channelName;
    private String assetsType;
 
 
 
 
 
 
}