feat: 增加技能管理模块试验性功能,等待优化

This commit is contained in:
2026-06-08 16:52:41 +08:00
parent cb379e071c
commit 950148b3f7
68 changed files with 4901 additions and 135 deletions

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.SkillAssetContent;
/**
* Skill asset 内容索引 Mapper。
*/
public interface SkillAssetContentMapper extends BaseMapper<SkillAssetContent> {
}

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.SkillAsset;
/**
* Skill asset Mapper。
*/
public interface SkillAssetMapper extends BaseMapper<SkillAsset> {
}

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.SkillCategory;
/**
* Skill 分类 Mapper。
*/
public interface SkillCategoryMapper extends BaseMapper<SkillCategory> {
}

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.Skill;
/**
* Skill Mapper。
*/
public interface SkillMapper extends BaseMapper<Skill> {
}

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.SkillReference;
/**
* Skill reference Mapper。
*/
public interface SkillReferenceMapper extends BaseMapper<SkillReference> {
}

View File

@@ -0,0 +1,10 @@
package tech.easyflow.skill.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.skill.entity.SkillScript;
/**
* Skill script Mapper。
*/
public interface SkillScriptMapper extends BaseMapper<SkillScript> {
}