ArchivesBorrowMapper.java
1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.ruoyi.mapper;
import com.ruoyi.domain.ArchivesBorrow;
import com.ruoyi.domain.ArchivesBox;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 【请填写功能名称】Mapper接口
*
* @author ym
* @date 2022-08-23
*/
public interface ArchivesBorrowMapper
{
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBorrow);
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
List<ArchivesBorrow> selectArchivesBorrowListByFilingDept(ArchivesBorrow archivesBorrow);
/**
* 查询【请填写功能名称】列表
*
* @param ids 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
Long[] selectCollectBoxIds(Long[] ids);
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
int updateArchivesBorrowByIds(@Param("archivesBorrow") ArchivesBorrow archivesBorrow, @Param("ids") Long[] ids);
int updateArchivesBorrowById(ArchivesBorrow archivesBorrow);
}