许鹏程
2025-05-19 c356c77683d055f82a668c28db8b56f9c5e04b84
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.product.file.service.ide;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * Copyright LX-BASE
 *
 * @Title: ClaimExpenseController
 * @Project: LX-BASE-SERVER
 * @Date: 2020-11-18 11:30:48
 * @Author: luoxin
 * @Description: 文件夹管理接口
 */
public interface IDocumentDirectoryService {
 
    /**
     *     文档目录保存
     * @param fse
     * @return
     */
    boolean saveDocumentDireactory(FieldSetEntity fse);
    boolean saveFileConfig(FieldSetEntity fse);
 
    /**
   * 删除文档目录
   * @param
   * @return
   * @throws BaseException
   */
  boolean delDocumentDirectory(FieldSetEntity fieldSetEntity) throws BaseException;
 
  /**
   * 获取单个文档目录结构
   * @param
   * @return
   * @throws BaseException
   */
  DataTableEntity getDirectoryStructure(FieldSetEntity fieldSetEntity) throws BaseException;
 
  /**
   * 获取文档目录树形列表
   * @param
   * @return
   * @throws BaseException
   */
  JSONArray treeListAll(FieldSetEntity fieldSetEntity) throws BaseException;
 
  /**
   * 封装树方法
   * @param
   * @return
   * @throws BaseException
   */
  JSONArray encapsulationTree(DataTableEntity dataTableEntity) throws BaseException;
 
  /**
   * 获取文件详情
   * @param
   * @return
   * @throws BaseException
   */
  FieldSetEntity documentDirectoryInfo(FieldSetEntity fieldSetEntity) throws BaseException;
 
 
 
  /**
   * 移动到目录列表(根据当前用户过滤展示目录列表)
   * @param
   * @return
   * @throws BaseException
   */
  DataTableEntity moveToList(FieldSetEntity fse) throws BaseException;
 
 
  /**
   * 个人文件夹目录重复名
   * @param
   * @return
   * @throws BaseException
   */
  boolean upDocumentDirectoryName(FieldSetEntity fse) throws BaseException;
}