初始化

This commit is contained in:
2026-02-22 18:56:10 +08:00
commit 26677972a6
3112 changed files with 255972 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysAccount;
import com.mybatisflex.core.BaseMapper;
/**
* 用户表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysAccountMapper extends BaseMapper<SysAccount> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysAccountPosition;
import com.mybatisflex.core.BaseMapper;
/**
* 用户-职位表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysAccountPositionMapper extends BaseMapper<SysAccountPosition> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysAccountRole;
import com.mybatisflex.core.BaseMapper;
/**
* 用户-角色表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysAccountRoleMapper extends BaseMapper<SysAccountRole> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.system.entity.SysApiKey;
/**
* 映射层。
*
* @author Administrator
* @since 2025-04-18
*/
public interface SysApiKeyMapper extends BaseMapper<SysApiKey> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.system.entity.SysApiKeyResource;
/**
* 请求接口表 映射层。
*
* @author 12076
* @since 2025-12-01
*/
public interface SysApiKeyResourceMapper extends BaseMapper<SysApiKeyResource> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.system.entity.SysApiKeyResourceMapping;
/**
* apikey-请求接口表 映射层。
*
* @author 12076
* @since 2025-12-01
*/
public interface SysApiKeyResourceMappingMapper extends BaseMapper<SysApiKeyResourceMapping> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysDept;
import com.mybatisflex.core.BaseMapper;
/**
* 部门表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysDeptMapper extends BaseMapper<SysDept> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysDictItem;
import com.mybatisflex.core.BaseMapper;
/**
* 数据字典内容 映射层。
*
* @author michael
* @since 2024-03-03
*/
public interface SysDictItemMapper extends BaseMapper<SysDictItem> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysDict;
import com.mybatisflex.core.BaseMapper;
/**
* 系统配置表 映射层。
*
* @author michael
* @since 2024-03-03
*/
public interface SysDictMapper extends BaseMapper<SysDict> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysLog;
import com.mybatisflex.core.BaseMapper;
/**
* 映射层。
*
* @author michael
* @since 2024-01-28
*/
public interface SysLogMapper extends BaseMapper<SysLog> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysMenu;
import com.mybatisflex.core.BaseMapper;
/**
* 菜单表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysMenuMapper extends BaseMapper<SysMenu> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysOption;
import com.mybatisflex.core.BaseMapper;
/**
* 系统配置信息表。 映射层。
*
* @author michael
* @since 2024-03-13
*/
public interface SysOptionMapper extends BaseMapper<SysOption> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysPosition;
import com.mybatisflex.core.BaseMapper;
/**
* 职位表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysPositionMapper extends BaseMapper<SysPosition> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.system.entity.SysRoleDept;
/**
* 角色-部门表 映射层。
*
* @author ArkLight
* @since 2025-11-19
*/
public interface SysRoleDeptMapper extends BaseMapper<SysRoleDept> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysRole;
import com.mybatisflex.core.BaseMapper;
/**
* 系统角色 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysRoleMapper extends BaseMapper<SysRole> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import tech.easyflow.system.entity.SysRoleMenu;
import com.mybatisflex.core.BaseMapper;
/**
* 角色-菜单表 映射层。
*
* @author ArkLight
* @since 2025-03-14
*/
public interface SysRoleMenuMapper extends BaseMapper<SysRoleMenu> {
}

View File

@@ -0,0 +1,14 @@
package tech.easyflow.system.mapper;
import com.mybatisflex.core.BaseMapper;
import tech.easyflow.system.entity.SysUserFeedback;
/**
* 映射层。
*
* @author 12076
* @since 2025-12-30
*/
public interface SysUserFeedbackMapper extends BaseMapper<SysUserFeedback> {
}