houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.knowledge.service;
 
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.knowledge.dto.KnowledgePathDTO;
import com.iailab.module.knowledge.entity.KnowledgePathEntity;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年12月25日 17:21:00
 */
public interface KnowledgePathService extends BaseService<KnowledgePathEntity> {
 
    PageData<KnowledgePathDTO> page(Map<String, Object> params);
 
    List<KnowledgePathDTO> list(Map<String, Object> params);
 
    List<KnowledgePathDTO> tree();
 
    KnowledgePathDTO get(String id);
 
    void save(KnowledgePathDTO dto);
 
    void update(KnowledgePathDTO dto);
 
    void delete(String id);
}