1
dd
2025-10-23 5483fa32808d5fe1cbdc10f3df40316708d73c04
src/main/java/com/nq/pojo/UserWithdraw.java
@@ -1,6 +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 java.math.BigDecimal;
@@ -9,7 +12,7 @@
public class UserWithdraw {
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;
    @Excel(name = "用户id")
    private Integer userId;
@@ -19,10 +22,10 @@
    private Integer agentId;
    @Excel(name = "出金金额")
    private BigDecimal withAmt;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Kolkata")
    @Excel(name = "申请时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    private Date applyTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Kolkata")
    @Excel(name = "出金时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss")
    private Date transTime;
@@ -40,7 +43,7 @@
    private BigDecimal withFee;
    @Excel(name = "原因")
    private String withMsg;
    @TableField(exist = false)
    private String userPhone;