fei
2 天以前 e899d2709f21b322232fb64778fef296233be3f0
archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java
@@ -1,5 +1,7 @@
package com.ruoyi.service;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ArchiveRecords;
import com.ruoyi.domain.Archiverecordstouser;
import java.util.List;
@@ -10,8 +12,11 @@
 * @author ruoyi
 * @date 2025-07-20
 */
public interface IArchiverecordstouserService
public interface IArchiverecordstouserService
{
    public int insertRecordToUsers(String recordId, Long[] userIds);
    AjaxResult selectDataList(Archiverecordstouser archiverecordstouser, Integer pageNum, Integer pageSize);
    /**
     * 查询【请填写功能名称】
     * 
@@ -20,6 +25,9 @@
     */
    public Archiverecordstouser selectArchiverecordstouserById(Long id);
    public boolean selectArchiveRecordUsers(String recordId);
    /**
     * 查询【请填写功能名称】列表
     * 
@@ -59,4 +67,11 @@
     * @return 结果
     */
    public int deleteArchiverecordstouserById(Long id);
    public int deleteArchiverecordstouserByRecordId(String recordId, Long userId);
    public int queryArchiverecordstouserByRecordId(String recordId, Long userId);
}