From 6149443e383fe700aec231bbdea6460230e75d9f Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期二, 30 七月 2024 14:58:14 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/ForestFirePrevention --- ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementImgController.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementImgController.java b/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementImgController.java index 12f60c8..db4adf0 100644 --- a/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementImgController.java +++ b/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlStoreManagementImgController.java @@ -7,6 +7,7 @@ import com.ruoyi.management.domain.dto.StoreManagementimgDTO; import com.ruoyi.management.domain.dto.StoreManagementimgQuery; import com.ruoyi.management.service.SlStoreManagementImgService; +import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -26,6 +27,7 @@ */ @RestController @RequestMapping("/sl-store-management-img") +@Api(value = "仓库对应平面图接口", tags = "仓库对应平面图接口", description = "仓库对应平面图接口") public class SlStoreManagementImgController { @Resource @@ -38,7 +40,7 @@ } @PostMapping("/getStoreManagementimgOne") - @ApiOperation(value = "獲取仓库管理平面圖") + @ApiOperation(value = "获取仓库管理平面圖") public R<SlStoreManagementImg> getStoreManagementimgOne(@RequestBody StoreManagementimgQuery storeManagementimgQuery) { return R.ok(slStoreManagementImgService.getStoreManagementimgOne(storeManagementimgQuery)); } -- Gitblit v1.7.1