DgFileMapper.java
822 Bytes
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
package com.pashanhoo.file.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.pashanhoo.file.entity.DgFileDO;
import com.pashanhoo.file.entity.vo.DgCatalogWithFileVO;
import com.pashanhoo.file.entity.vo.UpdateDgFileRequest;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* <p>
* 档案文件信息 Mapper 接口
* </p>
*
* @author
* @since 2021-11-05
*/
public interface DgFileMapper extends BaseMapper<DgFileDO> {
/**
* 获取附件列表
*
* @param bsmArchive
* @return
*/
List<DgCatalogWithFileVO> getFileList(@Param("bsmArchive") String bsmArchive);
// /**
// * 更新排序
// * @param requests
// * @return
// */
// int updateFileSort(@Param("requests") List<UpdateDgFileRequest> requests);
}