zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.doc.service;
 
import org.jeecg.modules.doc.entity.DocFilePath;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
import java.util.Set;
 
/**
 * @Description: doc_file_path
 * @Author: jeecg-boot
 * @Date:   2022-07-04
 * @Version: V1.0
 */
public interface IDocFilePathService extends IService<DocFilePath> {
 
    void initDocFilePath();
 
    List<DocFilePath> listFiles(Set<String> pathIds);
 
    void deleteUserFile(String pathId, String id);
 
    List<DocFilePath> selectUserFileByLikeRightFilePath(String filePath);
 
    List<DocFilePath> selectUserFileByNameAndPath(String fileName, String filePath, String id);
 
    void userFileCopy(String userFileId, String newfilePath);
 
    void updateFilepathByUserFileId(String userFileId, String newfilePath);
 
    List<DocFilePath> listDirTree(DocFilePath docFilePath, Set<String> pathIds);
 
 
    boolean selectPermissionByPath(String pathId,Map<String, DocFilePath> manage);
 
    List<Map<String, Object>> querySubCount(String[] fileIds);
 
    List<DocFilePath> selectSameUserFile(String fileName, String filePath, String extendName);
 
    List<DocFilePath> getDocFilePathsByPathName(String parentFilePath, String fileName);
}