大屏项目初始化

This commit is contained in:
2026-03-08 23:38:37 +08:00
parent 2c81b1478c
commit 03c61b4501
25 changed files with 1333 additions and 205 deletions

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.mapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.mini.mybigscreen.biz.domain.Notes;
/**
* <p>
* 便签管理表 Mapper 接口
* </p>
*
* @author gaoxq
* @since 2026-03-08
*/
public interface NotesMapper extends MPJBaseMapper<Notes> {
}

View File

@@ -0,0 +1,17 @@
package com.mini.mybigscreen.biz.mapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.mini.mybigscreen.biz.domain.QuickLogin;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 快捷登录系统信息表 Mapper 接口
* </p>
*
* @author gaoxq
* @since 2026-03-08
*/
public interface QuickLoginMapper extends MPJBaseMapper<QuickLogin> {
}

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.mapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.mini.mybigscreen.biz.domain.WarningAlert;
/**
* <p>
* 预警提示表 Mapper 接口
* </p>
*
* @author gaoxq
* @since 2026-03-08
*/
public interface WarningAlertMapper extends MPJBaseMapper<WarningAlert> {
}