From 29ec9c2a3fd1c1e0b1695edb6275dad765137e69 Mon Sep 17 00:00:00 2001
From: fei <791364011@qq.com>
Date: 星期六, 11 十月 2025 21:07:50 +0800
Subject: [PATCH] 修改了大量的代码块

---
 archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java |   41 ++++++++++++++++++++++-------------------
 1 files changed, 22 insertions(+), 19 deletions(-)

diff --git a/archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java b/archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java
index bead0b4..e877641 100644
--- a/archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java
+++ b/archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java
@@ -8,74 +8,77 @@
 import java.util.List;
 
 /**
- * 銆愯濉啓鍔熻兘鍚嶇О銆慡ervice鎺ュ彛
+ * 銆愭。妗堝垎閰嶃�慡ervice鎺ュ彛
  * 
  * @author ruoyi
  * @date 2025-07-20
  */
 public interface IArchiverecordstouserService
 {
-    public int insertRecordToUsers(String recordId, Long[] userIds);
+    public int insertRecordToUsers(Long recordId, Long[] userIds);
     AjaxResult selectDataList(Archiverecordstouser archiverecordstouser, Integer pageNum, Integer pageSize);
 
     /**
-     * 鏌ヨ銆愯濉啓鍔熻兘鍚嶇О銆�
+     * 鏌ヨ銆愭。妗堝垎閰嶃��
      * 
-     * @param id 銆愯濉啓鍔熻兘鍚嶇О銆戜富閿�
-     * @return 銆愯濉啓鍔熻兘鍚嶇О銆�
+     * @param id 銆愭。妗堝垎閰嶃�戜富閿�
+     * @return 銆愭。妗堝垎閰嶃��
      */
     public Archiverecordstouser selectArchiverecordstouserById(Long id);
 
 
 
-    public boolean selectArchiveRecordUsers(String recordId);
+    public boolean selectArchiveRecordUsers(Long recordId);
     /**
-     * 鏌ヨ銆愯濉啓鍔熻兘鍚嶇О銆戝垪琛�
+     * 鏌ヨ銆愭。妗堝垎閰嶃�戝垪琛�
      * 
-     * @param archiverecordstouser 銆愯濉啓鍔熻兘鍚嶇О銆�
-     * @return 銆愯濉啓鍔熻兘鍚嶇О銆戦泦鍚�
+     * @param archiverecordstouser 銆愭。妗堝垎閰嶃��
+     * @return 銆愭。妗堝垎閰嶃�戦泦鍚�
      */
     public List<Archiverecordstouser> selectArchiverecordstouserList(Archiverecordstouser archiverecordstouser);
 
     /**
-     * 鏂板銆愯濉啓鍔熻兘鍚嶇О銆�
+     * 鏂板銆愭。妗堝垎閰嶃��
      * 
-     * @param archiverecordstouser 銆愯濉啓鍔熻兘鍚嶇О銆�
+     * @param archiverecordstouser 銆愭。妗堝垎閰嶃��
      * @return 缁撴灉
      */
     public int insertArchiverecordstouser(Archiverecordstouser archiverecordstouser);
 
     /**
-     * 淇敼銆愯濉啓鍔熻兘鍚嶇О銆�
+     * 淇敼銆愭。妗堝垎閰嶃��
      * 
-     * @param archiverecordstouser 銆愯濉啓鍔熻兘鍚嶇О銆�
+     * @param archiverecordstouser 銆愭。妗堝垎閰嶃��
      * @return 缁撴灉
      */
     public int updateArchiverecordstouser(Archiverecordstouser archiverecordstouser);
 
     /**
-     * 鎵归噺鍒犻櫎銆愯濉啓鍔熻兘鍚嶇О銆�
+     * 鎵归噺鍒犻櫎銆愭。妗堝垎閰嶃��
      * 
-     * @param ids 闇�瑕佸垹闄ょ殑銆愯濉啓鍔熻兘鍚嶇О銆戜富閿泦鍚�
+     * @param ids 闇�瑕佸垹闄ょ殑銆愭。妗堝垎閰嶃�戜富閿泦鍚�
      * @return 缁撴灉
      */
     public int deleteArchiverecordstouserByIds(Long[] ids);
 
     /**
-     * 鍒犻櫎銆愯濉啓鍔熻兘鍚嶇О銆戜俊鎭�
+     * 鍒犻櫎銆愭。妗堝垎閰嶃�戜俊鎭�
      * 
-     * @param id 銆愯濉啓鍔熻兘鍚嶇О銆戜富閿�
+     * @param id 銆愭。妗堝垎閰嶃�戜富閿�
      * @return 缁撴灉
      */
     public int deleteArchiverecordstouserById(Long id);
 
 
 
-    public int deleteArchiverecordstouserByRecordId(String recordId, Long userId);
+    public int deleteArchiverecordstouserByRecordId(Long recordId, Long userId);
 
 
-    public int queryArchiverecordstouserByRecordId(String recordId, Long userId);
+    public int queryArchiverecordstouserByRecordId(Long recordId, Long userId);
 
 
     public AjaxResult countStatistic(String username, int pageNum, int pageSize);
+
+
+    public List<RecordToUserCount> findAllRecordToUserCont(); 
 }

--
Gitblit v1.9.1