From ebede85283906f52dd45d0755d22140538038ac3 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期五, 27 十二月 2024 13:27:47 +0800 Subject: [PATCH] 完成6.6供应商模块 --- 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