From 00bdd5dce142811b3766ee6af801c72fba18df09 Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Mon, 02 Mar 2026 18:50:20 +0800
Subject: [PATCH] 1

---
 src/main/java/com/nq/pojo/UserWithdraw.java |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/nq/pojo/UserWithdraw.java b/src/main/java/com/nq/pojo/UserWithdraw.java
index 2ce1b5b..22e5f9d 100644
--- a/src/main/java/com/nq/pojo/UserWithdraw.java
+++ b/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 java.math.BigDecimal;
@@ -10,7 +12,7 @@
 
 
 public class UserWithdraw {
-
+    @TableId(value = "id",type = IdType.AUTO)
     private Integer id;
     @Excel(name = "用户id")
     private Integer userId;
@@ -35,7 +37,7 @@
     @Excel(name = "银行支行")
     private String bankAddress;
 
-    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2", "取消_3"  })
+    @Excel(name = "状态" ,replace = { "审核中_0", "成功_1", "失败_2", "取消_3","已提交_4"  })
     private Integer withStatus;
     @Excel(name = "手续费")
     private BigDecimal withFee;

--
Gitblit v1.9.3