1
zj
2024-10-11 5f97f550b3fb60ac2142d7ca3c78d6bd04f18b80
src/main/java/com/nq/pojo/UserWithdraw.java
@@ -1,7 +1,9 @@
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;
@@ -11,7 +13,7 @@
@Data
public class UserWithdraw {
    @TableId(value="id",type= IdType.AUTO)
    private Integer id;
    @Excel(name = "用户id")
    private Integer userId;
@@ -21,18 +23,35 @@
    private Integer agentId;
    @Excel(name = "出金金额")
    private BigDecimal withAmt;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Kolkata")
    @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/Kolkata")
    @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 bankNo;
    //银行名称
    @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;