功能管理

This commit is contained in:
2026-01-09 15:52:59 +08:00
commit f3b3a454fc
37 changed files with 1628 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.cczsa.xinghe.codegen.mapper;
import org.apache.ibatis.annotations.Mapper;
import com.mybatisflex.core.BaseMapper;
import com.cczsa.xinghe.codegen.entity.FunModuleEntity;
/**
* 模块 映射层。
*
* @author My
* @since 0.0.1
*/
@Mapper
public interface FunModuleMapper extends BaseMapper<FunModuleEntity> {
}