大屏页面初始化

This commit is contained in:
2026-03-05 18:33:45 +08:00
parent d3d713f131
commit cf65afb47f
21 changed files with 2027 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.mapper;
import com.mini.mybigscreen.biz.domain.HomeRole;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 角色表 Mapper 接口
* </p>
*
* @author gaoxq
* @since 2026-03-05
*/
public interface HomeRoleMapper extends BaseMapper<HomeRole> {
}

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.mapper;
import com.mini.mybigscreen.biz.domain.HomeRoleMenu;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 角色菜单表 Mapper 接口
* </p>
*
* @author gaoxq
* @since 2026-03-05
*/
public interface HomeRoleMenuMapper extends BaseMapper<HomeRoleMenu> {
}