1
zj
2025-08-06 92792c5583fd0e31a8da671d5dec357b82d8f0a5
src/main/java/com/nq/pojo/UserWithdraw.java
@@ -1,15 +1,19 @@
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;
@@ -33,14 +37,15 @@
    private String bankName;
    @Excel(name = "银行支行")
    private String bankAddress;
    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2", "取消_3"  })
    @Excel(name = "支行番号")
    private String branchNo;
    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2", "取消_3","已提交_4"  })
    private Integer withStatus;
    @Excel(name = "手续费")
    private BigDecimal withFee;
    @Excel(name = "原因")
    private String withMsg;
    @TableField(exist = false)
    private String userPhone;