From cedaeeed6d401aefebf93ea6ea21cc9e06d5f5db Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期二, 02 十二月 2025 10:36:48 +0800
Subject: [PATCH] 新增搜索 模块+同伴+时间
---
zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java b/zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java
index 5dfe4bd..473a64e 100644
--- a/zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java
+++ b/zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java
@@ -3,17 +3,19 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
+import com.ruoyi.common.annotation.Excel;
import lombok.Data;
@Data
@TableName("zf_clan")
-public class clan {
- @TableId(value = "id", type = IdType.AUTO)
+public class ZfClan {
+ @TableId(value = "clan_id", type = IdType.AUTO)
private Integer clanId;
+ /**
+ * 瀹舵棌鍚嶇О
+ */
+ @Excel(name = "鍚嶅瓧")
private String clanName;
- private Integer dadId;
-
- private Integer momId;
-}
+}
\ No newline at end of file
--
Gitblit v1.9.1