From df13f27e9cae2d7b112ef0dda85cba456ecef32b Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期三, 26 二月 2025 16:45:09 +0800 Subject: [PATCH] 远场和近场的数据解析的单位和指标需要重新对应+报告生成放在复核结束里面 --- cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeLightningProtectionController.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeLightningProtectionController.java b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeLightningProtectionController.java index c8c4075..4a0e72c 100644 --- a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeLightningProtectionController.java +++ b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeLightningProtectionController.java @@ -39,7 +39,7 @@ @Api(tags = "璁炬柦鍜岀幆澧冩潯浠惰姹�-闃查浄妫�娴�") @RestController @RequestMapping("/feLightningProtection") -@CustomClazzName(name = "璧勬簮瑕佹眰",index = 6) + public class FeLightningProtectionController { @Autowired @@ -62,7 +62,7 @@ @ValueClassify(value = "璁炬柦鍜岀幆澧冩潯浠惰姹�") @DeleteMapping("deleteLightningProtectionDetection") @ApiOperation("璁炬柦鍜岀幆澧冩潯浠惰姹�-闃查浄妫�娴嬪垹闄�") - public Result<?> deleteFeLightningProtection(@RequestParam("lightningProtectionId") Integer lightningProtectionId) { + public Result<?> deleteLightningProtectionDetection(@RequestParam("lightningProtectionId") Integer lightningProtectionId) { feLightningProtectionService.removeById(lightningProtectionId); return Result.success(); } @@ -70,7 +70,7 @@ @ValueClassify(value = "璁炬柦鍜岀幆澧冩潯浠惰姹�") @GetMapping("getLightningProtectionDetection") @ApiOperation("璁炬柦鍜岀幆澧冩潯浠惰姹�-闃查浄妫�娴嬫煡璇�") - public Result<IPage<FeLightningProtection>> getFeLightningProtection(Page page) { + public Result<IPage<FeLightningProtection>> getLightningProtectionDetection(Page page) { IPage<FeLightningProtection> page1 = feLightningProtectionService.page(page); return Result.success(page1); } -- Gitblit v1.9.3