大屏项目初始化

This commit is contained in:
2026-03-03 00:16:12 +08:00
parent 866aaab059
commit 5b7abef74c
25 changed files with 397 additions and 117 deletions

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.service;
import com.mini.mybigscreen.biz.domain.IndexInfo;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 首页指标数据表 服务类
* </p>
*
* @author gaoxq
* @since 2026-03-02
*/
public interface IndexInfoService extends IService<IndexInfo> {
}

View File

@@ -0,0 +1,20 @@
package com.mini.mybigscreen.biz.service.impl;
import com.mini.mybigscreen.biz.domain.IndexInfo;
import com.mini.mybigscreen.biz.mapper.IndexInfoMapper;
import com.mini.mybigscreen.biz.service.IndexInfoService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 首页指标数据表 服务实现类
* </p>
*
* @author gaoxq
* @since 2026-03-02
*/
@Service
public class IndexInfoServiceImpl extends ServiceImpl<IndexInfoMapper, IndexInfo> implements IndexInfoService {
}