zqy
2025-09-21 bd2df0a3e0634bb5469472f10315797365748559
archiveManager/src/main/java/com/ruoyi/service/IArchiverecordstouserService.java
@@ -3,11 +3,12 @@
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ArchiveRecords;
import com.ruoyi.domain.Archiverecordstouser;
import com.ruoyi.domain.vo.RecordToUserCount;
import java.util.List;
/**
 * 【请填写功能名称】Service接口
 * 【档案分配】Service接口
 * 
 * @author ruoyi
 * @date 2025-07-20
@@ -18,49 +19,52 @@
    AjaxResult selectDataList(Archiverecordstouser archiverecordstouser, Integer pageNum, Integer pageSize);
    /**
     * 查询【请填写功能名称】
     * 查询【档案分配】
     * 
     * @param id 【请填写功能名称】主键
     * @return 【请填写功能名称】
     * @param id 【档案分配】主键
     * @return 【档案分配】
     */
    public Archiverecordstouser selectArchiverecordstouserById(Long id);
    public boolean selectArchiveRecordUsers(String 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);
@@ -71,4 +75,10 @@
    public int queryArchiverecordstouserByRecordId(String recordId, Long userId);
    public AjaxResult countStatistic(String username, int pageNum, int pageSize);
    public List<RecordToUserCount> findAllRecordToUserCont();
}