知识库代码框架

This commit is contained in:
spllzh
2025-10-28 08:39:35 +08:00
parent 7af226b8a4
commit 6c40d95604
26 changed files with 832 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
package com.rj.mapper;
import com.rj.entity.KnowledgeBase;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 知识库管理表 Mapper 接口
* </p>
*
* @author 李中华 ,spllzh
* @since 2025-01-27
*/
public interface KnowledgeBaseMapper extends BaseMapper<KnowledgeBase> {
}