From d2cbc715156a231d449108746b36ede97306d9ab Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 13 十二月 2024 20:41:43 +0800
Subject: [PATCH] 1

---
 se-modules/se-system/src/main/java/com/se/system/domain/SysCtrlLog.java |   25 ++++++++++++++++++++-----
 1 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/se-modules/se-system/src/main/java/com/se/system/domain/SysCtrlLog.java b/se-modules/se-system/src/main/java/com/se/system/domain/SysCtrlLog.java
index 837004f..c2b6bb8 100644
--- a/se-modules/se-system/src/main/java/com/se/system/domain/SysCtrlLog.java
+++ b/se-modules/se-system/src/main/java/com/se/system/domain/SysCtrlLog.java
@@ -3,15 +3,14 @@
 import java.util.Date;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import com.se.common.core.annotation.Excel;
-import com.se.common.core.web.domain.BaseEntity;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 
 /**
  * 鎺у埗鏃ュ織瀵硅薄 sys_ctrl_log
- * 
+ *
  * @author se
- * @date 2024-11-22
+ * @date 2024-12-13
  */
 public class SysCtrlLog {
     private static final long serialVersionUID = 1L;
@@ -22,15 +21,21 @@
     private Long logId;
 
     /**
+     * 琛↖D
+     */
+    @Excel(name = "琛↖D")
+    private Long tabId;
+
+    /**
      * 鏍囬
      */
     @Excel(name = "鏍囬")
     private String title;
 
     /**
-     * 绫诲瀷
+     * 绫诲瀷锛坣-姝e父锛宔-閿欒锛�
      */
-    @Excel(name = "绫诲瀷")
+    @Excel(name = "绫诲瀷", readConverterExp = "n=-姝e父锛宔-閿欒")
     private String type;
 
     /**
@@ -79,6 +84,7 @@
     /**
      * 澶囨敞
      */
+    @Excel(name = "澶囨敞")
     private String remark;
 
     public void setLogId(Long logId) {
@@ -87,6 +93,14 @@
 
     public Long getLogId() {
         return logId;
+    }
+
+    public void setTabId(Long tabId) {
+        this.tabId = tabId;
+    }
+
+    public Long getTabId() {
+        return tabId;
     }
 
     public void setTitle(String title) {
@@ -173,6 +187,7 @@
     public String toString() {
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                 .append("logId", getLogId())
+                .append("tabId", getTabId())
                 .append("title", getTitle())
                 .append("type", getType())
                 .append("ip", getIp())

--
Gitblit v1.9.3