mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-23 11:09:29 +08:00
管理员角色控制
This commit is contained in:
20
src/main/java/xyz/playedu/api/mapper/AdminRoleMapper.java
Normal file
20
src/main/java/xyz/playedu/api/mapper/AdminRoleMapper.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package xyz.playedu.api.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import xyz.playedu.api.domain.AdminRole;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
* @description 针对表【admin_roles】的数据库操作Mapper
|
||||
* @createDate 2023-02-21 15:53:27
|
||||
* @Entity xyz.playedu.api.domain.AdminRole
|
||||
*/
|
||||
@Mapper
|
||||
public interface AdminRoleMapper extends BaseMapper<AdminRole> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
package xyz.playedu.api.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import xyz.playedu.api.domain.AdminRolePermission;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
* @description 针对表【admin_role_permission】的数据库操作Mapper
|
||||
* @createDate 2023-02-21 16:07:01
|
||||
* @Entity xyz.playedu.api.domain.AdminRolePermission
|
||||
*/
|
||||
@Mapper
|
||||
public interface AdminRolePermissionMapper extends BaseMapper<AdminRolePermission> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user