IArchivesBorrowService.java
1.12 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
53
54
55
56
package com.ruoyi.service;
import com.ruoyi.domain.ArchivesBorrow;
import java.util.List;
/**
* 【请填写功能名称】Service接口
*
* @author ym
* @date 2022-08-23
*/
public interface IArchivesBorrowService
{
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBorrow);
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
List<ArchivesBorrow> selectArchivesBorrowListByFilingDept(ArchivesBorrow archivesBorrow);
/**
* 文件归还
*
* @param ids
* @return
*/
int archivesReturn(Long[] ids);
/**
* 文件续借
*
* @param ids
* @return
*/
int archivesRenew(Long[] ids);
/**
* 新增
*
* @param archivesBorrow
* @return 结果
*/
public int insertArchivesBorrow(ArchivesBorrow archivesBorrow);
}