1
zj
2024-10-01 f525648210da700d58d3b3a5c8a48d46abba4a68
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
64
65
66
67
68
69
package com.nq.pojo;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
 
import java.util.Date;
 
@Data
public class UserWithdraw {
    @TableId(value="id",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 BigDecimal withAmt;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo")
    @Excel(name = "申请时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    private Date applyTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo")
    @Excel(name = "出金时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    private Date transTime;
 
    private String withName;
 
    //银行名称
    @Excel(name = "银行名称")
    private String bankName;
 
    //开户支行
    @Excel(name = "开户支行")
    private String branch;
 
    //分行号码
    @Excel(name = "分行号码")
    private String branchNo;
 
    //银行卡号
    @Excel(name = "银行卡号")
    private String bankNo;
 
    //姓名
    @Excel(name = "姓名")
    private String payeeName;
 
    @Excel(name = "银行支行")
    private String bankAddress;
 
    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2", "取消_3"  })
    private Integer withStatus;
    @Excel(name = "手续费")
    private BigDecimal withFee;
    @Excel(name = "原因")
    private String withMsg;
    @TableField(exist = false)
    private String userPhone;
    private String assetsType;
 
 
}