冀北检测点试运行部分接口提交
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.njcn.supervision.controller.device;
|
||||
|
||||
|
||||
import com.njcn.supervision.service.device.ISupervisionTempLineRunTestService;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.njcn.web.controller.BaseController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author cdf
|
||||
* @since 2024-05-21
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/supervisionTempLineRunTest")
|
||||
@RequiredArgsConstructor
|
||||
public class SupervisionTempLineRunTestController extends BaseController {
|
||||
|
||||
private final ISupervisionTempLineRunTestService iSupervisionTempLineRunTestService;
|
||||
|
||||
}
|
||||
|
||||
@@ -59,6 +59,17 @@ public class TempLineDebugController extends BaseController {
|
||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, out, methodDescribe);
|
||||
}
|
||||
|
||||
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||
@PostMapping("/pageHasDebug")
|
||||
@ApiOperation("查询已完成联调监测点")
|
||||
@ApiImplicitParam(name = "supervisionTempLineDebugQuery", value = "参数", required = true)
|
||||
public HttpResult<Page<SupervisionTempLineDebugVO>> pageHasDebug(@RequestBody @Validated SupervisionTempLineDebugParam.SupervisionTempLineDebugQuery supervisionTempLineDebugQuery) {
|
||||
String methodDescribe = getMethodDescribe("pageHasDebug");
|
||||
Page<SupervisionTempLineDebugVO> out = supervisionTempLineDebugPOService.pageHasDebug(supervisionTempLineDebugQuery);
|
||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, out, methodDescribe);
|
||||
}
|
||||
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||
@PostMapping("/getDetail")
|
||||
@ApiOperation("查询详情")
|
||||
|
||||
Reference in New Issue
Block a user