初始化
This commit is contained in:
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user