From ca4b62abd2560b6dcffbf3ff43da1b04427b494b Mon Sep 17 00:00:00 2001
From: fei <791364011@qq.com>
Date: 星期二, 20 一月 2026 12:36:47 +0800
Subject: [PATCH] 增加了签名和注解

---
 archiveManager/src/main/java/com/ruoyi/domain/ArchiveRecords.java |   26 +++++++++++++++++++++++++-
 1 files changed, 25 insertions(+), 1 deletions(-)

diff --git a/archiveManager/src/main/java/com/ruoyi/domain/ArchiveRecords.java b/archiveManager/src/main/java/com/ruoyi/domain/ArchiveRecords.java
index 852cca1..4eeb80b 100644
--- a/archiveManager/src/main/java/com/ruoyi/domain/ArchiveRecords.java
+++ b/archiveManager/src/main/java/com/ruoyi/domain/ArchiveRecords.java
@@ -22,6 +22,18 @@
 {
     private static final long serialVersionUID = 1L;
 
+    public String getUserName() {
+        return userName;
+    }
+
+    public void setUserName(String userName) {
+        this.userName = userName;
+    }
+
+    @TableField(exist = false)
+
+    private String userName;
+
     /** $column.columnComment */
     @TableId(type = IdType.AUTO)
 
@@ -47,7 +59,7 @@
     }
 
   //  @Excel(name = "椤圭洰鍚嶇О", headerColor = IndexedColors.BLACK)
-
+  @Excel(name = "椤圭洰鍚嶇О", type = Excel.Type.IMPORT)
     private String everyProjectName;
     /** 妗堝嵎棰樺悕 */
     @Excel(name = "妗堝嵎棰樺悕", headerColor = IndexedColors.RED, width = 10)
@@ -117,6 +129,10 @@
     /** 澶囨敞 */
     @Excel(name = "澶囨敞", headerColor = IndexedColors.BLACK, width = 8)
     private String remarks;
+
+    /** 澶囨敞 */
+    @Excel(name = "澶囪�冭〃澶囨敞", headerColor = IndexedColors.BLACK, width = 8)
+    private String noteRemark;
     @TableField(exist = false)
     private String orderByColumn;
     @TableField(exist = false)
@@ -478,4 +494,12 @@
             .append("historicalReferenceNumber", getHistoricalReferenceNumber())
             .toString();
     }
+
+    public String getNoteRemark() {
+        return noteRemark;
+    }
+
+    public void setNoteRemark(String noteRemark) {
+        this.noteRemark = noteRemark;
+    }
 }

--
Gitblit v1.9.1