大屏 - 告警管理

This commit is contained in:
sliang 2024-03-27 20:56:35 +08:00
parent 69efb339c6
commit dbef2ee6c5
4 changed files with 28 additions and 1 deletions

View File

@ -28,6 +28,7 @@ import static com.securitycontrol.common.core.utils.PageUtils.startPage;
/** /**
* 告警管理 * 告警管理
* @author lsun
*/ */
@RestController @RestController
@RequestMapping("/largeScreen/alarmMge/") @RequestMapping("/largeScreen/alarmMge/")
@ -41,7 +42,7 @@ public class AlarmMgeController extends BaseController {
@Log(title = "告警管理", menu = "告警管理->告警管理", grade = OperationType.QUERY_BUSINESS, details = "查询告警管理列表", type = "业务日志") @Log(title = "告警管理", menu = "告警管理->告警管理", grade = OperationType.QUERY_BUSINESS, details = "查询告警管理列表", type = "业务日志")
public TableDataInfo getAlarmMgeList(AlarmMgeDto dto) { public TableDataInfo getAlarmMgeList(AlarmMgeDto dto) {
try{ try{
// startPage(); startLayPage();
List<AlarmMgeVo> list = service.getAlarmMgeList(dto); List<AlarmMgeVo> list = service.getAlarmMgeList(dto);
return getDataTableLayui(list); return getDataTableLayui(list);
}catch (Exception e){ }catch (Exception e){

View File

@ -0,0 +1,10 @@
package com.securitycontrol.screen.controller;
import com.securitycontrol.common.core.web.controller.BaseController;
/**
* @author lsun
* 组塔检测
*/
public class TowerAssInspectController extends BaseController {
}

View File

@ -0,0 +1,8 @@
package com.securitycontrol.screen.mapper;
/**
* @author lsun
* 组塔检测
*/
public interface TowerAssInspectMapper {
}

View File

@ -0,0 +1,8 @@
package com.securitycontrol.screen.service;
/**
* @author lsun
* 组塔检测
*/
public interface TowerAssInspectService {
}