houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.knowledge.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.module.knowledge.dto.KnowledgePathDTO;
import com.iailab.module.knowledge.entity.KnowledgePathEntity;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年12月25日 17:19:00
 */
@Mapper
public interface KnowledgePathDao extends BaseDao<KnowledgePathEntity> {
 
    List<KnowledgePathDTO> selectPathList();
}