添加页面支持的后台api目录

This commit is contained in:
houwei 2024-10-24 11:07:13 +08:00
parent b695538f34
commit a4e52d6742
2 changed files with 22 additions and 0 deletions

View File

@ -16,4 +16,9 @@ public interface SysAuthorityIds {
* 设备台账浏览权限 * 设备台账浏览权限
*/ */
Integer SYS_AUTHORITY_ID_DEVICE_VIEW = 103; Integer SYS_AUTHORITY_ID_DEVICE_VIEW = 103;
/**
* 风机启停复位控制权限
*/
Integer SYS_AUTHORITY_ID_TURBINE_CTRL=104;
} }

View File

@ -0,0 +1,17 @@
package com.das.modules.page.controller;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author houwei
* @date 2024-10-24
* @description: 风机列表页面 对应的 后端api
*/
@Slf4j
@RequestMapping("/api/page")
@RestController
public class WindTurbinesPageController {
}