| | |
| | | package com.dy.pipIrrRemote.monitor.mqttSd1.fault; |
| | | |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.dy.common.util.Callback; |
| | | import com.dy.pipIrrRemote.common.dto.DtoBase; |
| | | import com.dy.pipIrrRemote.monitor.common.ComCtrl; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | */ |
| | | |
| | | @Slf4j |
| | | @Tag(name = "远程命令", description = "查询设备终端实时值") |
| | | @RestController("p202404V201Cd5BCtrl") |
| | | @RequestMapping(path = "p202404V201/cd5B") |
| | | @Tag(name = "远程命令", description = "清除故障") |
| | | @RestController("mqttSd1FaultStartCtrl") |
| | | @RequestMapping(path = "mqttSd1/faultStartCtrl") |
| | | @RequiredArgsConstructor |
| | | @Scope("prototype") //因为有对象类属性,所以采用原型模式,每次请求新建一个实例对象 |
| | | public class CdStartCtrl extends ComCtrl { |
| | |
| | | @Autowired |
| | | private CdSv sv ; |
| | | |
| | | @Override |
| | | protected String checkDto(DtoBase dto) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | protected String dealComResult(String code, JSONObject resultData, Callback callback) { |
| | | return null; |
| | | } |
| | | } |