From 8c1c175a57c956734cb1f20ba31f824d37b17bfc Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期一, 29 十二月 2025 15:05:03 +0800
Subject: [PATCH] 修改了人物搜索代码,已经增加相关代码

---
 ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java |   37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
index 1dc0d3d..3587dcd 100644
--- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
@@ -57,7 +57,7 @@
     /** 瀵嗙爜 */
     private String password;
 
-    /** 甯愬彿鐘舵�侊紙0姝e父 1鍋滅敤锛� */
+    /** 甯愬彿鐘舵�侊紙0姝e父 1鍋滅敤 2鍒犻櫎 3寮傚父 4璇曠敤鏈熺粨鏉燂級 */
     @Excel(name = "甯愬彿鐘舵��", readConverterExp = "0=姝e父,1=鍋滅敤")
     private String status;
 
@@ -91,12 +91,45 @@
     /** 瑙掕壊ID */
     private Long roleId;
 
+    /**鏄惁浼氬憳 0鍚� 1鏄�*/
+    private Integer paid;
+
+    /**璇曠敤鏈熸椂闂� 榛樿7澶�**/
+    private Integer remainTime;
+
+    public Integer getRemainTime() {
+        return remainTime;
+    }
+
+    public void setRemainTime(Integer remainTime) {
+        this.remainTime = remainTime;
+    }
+
+    public Integer getPaid() {
+        return paid;
+    }
+
+    public void setPaid(Integer paid) {
+        this.paid = paid;
+    }
+
+
 
     public Integer getClanId() {
         return clanId;
     }
 
     private Integer clanId;
+
+    private String uaid;
+
+    public String getUaid() {
+        return uaid;
+    }
+
+    public void setUaid(String uaid) {
+        this.uaid = uaid;
+    }
 
     public void setClanId(Integer clanId) {
         this.clanId = clanId;
@@ -336,6 +369,8 @@
             .append("updateTime", getUpdateTime())
             .append("remark", getRemark())
             .append("dept", getDept())
+            .append("paid",getPaid())
+            .append("remainTime",getRemainTime())
             .toString();
     }
 }

--
Gitblit v1.9.1