From 2b6b7e5ddc741236459188d481b349a7105eb482 Mon Sep 17 00:00:00 2001
From: peternameyakj <908253177@qq.com>
Date: Thu, 13 Mar 2025 18:30:13 +0800
Subject: [PATCH] 总后台添加的代理,代理后台不显示问题

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

diff --git a/src/main/java/com/nq/pojo/UserWithdraw.java b/src/main/java/com/nq/pojo/UserWithdraw.java
index 0f04103..9881d65 100644
--- a/src/main/java/com/nq/pojo/UserWithdraw.java
+++ b/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;
@@ -40,7 +43,7 @@
     private BigDecimal withFee;
     @Excel(name = "原因")
     private String withMsg;
-
+    @TableField(exist = false)
     private String userPhone;
 
 

--
Gitblit v1.9.3