1234567891011121314151617181920 |
- package com.gyee.alarm.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 与停机事件关联(限电停机时),数据库中无关联,程序控制 前端控制器
- * </p>
- *
- * @author shilin
- * @since 2022-10-25
- */
- @RestController
- @RequestMapping("//pro-econ-brownouts-event2")
- public class ProEconBrownoutsEvent2Controller {
- }
|