From 2e1b594ca9bbd2af5b4e713746221705591ada52 Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期一, 29 四月 2024 09:42:01 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java | 33 ++++++++++++++------------------- 1 files changed, 14 insertions(+), 19 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java index defc8cb..dcd76c0 100644 --- a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java +++ b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/controller/EdgStorageCageController.java @@ -3,17 +3,12 @@ import com.mes.edgstoragecage.entity.EdgStorageCage; import com.mes.edgstoragecage.entity.EdgStorageCageDetails; import com.mes.edgstoragecage.service.EdgStorageCageService; -import com.mes.edgstoragecage.service.impl.EdgStorageCageServiceImpl; -import com.mes.taskcache.entity.TaskCache; -import com.mes.taskcache.service.impl.TaskCacheServiceImpl; import com.mes.utils.Result; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; -import java.awt.image.ImageProducer; -import java.util.HashMap; import java.util.List; import java.util.Map; @@ -25,7 +20,7 @@ * @author zhoush * @since 2024-04-07 */ -@Api(tags = "鐞嗙墖绗肩紦瀛�") +@Api(description = "鐞嗙墖绗肩紦瀛�") @RestController @RequestMapping("/edgStorageCage") public class EdgStorageCageController { @@ -37,28 +32,28 @@ @PostMapping("/selectEdgStorageCage") @ResponseBody public Result selectEdgStorageCage () { - List<Map> list=edgStorageCageService.selectEdgStorageCages(); + List<Map<String, Object>> list=edgStorageCageService.selectEdgStorageCages(); return Result.build(200,"鎴愬姛",list); } - @ApiOperation("娣诲姞纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氱鍐呯粦瀹氱幓鐠� 鍙傛暟(EdgStorageCage edgStorageCage)") - @PostMapping("/insertEdgStorageCage") - @ResponseBody - public Result insertEdgStorageCage(@RequestBody EdgStorageCage edgStorageCage) { - boolean isSucess=edgStorageCageService.updateEdgStorageCage(edgStorageCage); - return Result.build(200,"娣诲姞鎴愬姛",1); - } - @ApiOperation("淇敼纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氬绗煎唴鏍呮牸杩涜銆愬惎鐢�/绂佺敤銆�/ 銆愭洿鎹€�戠鍐呮爡鏍肩幓鐠冧俊鎭�") +// @ApiOperation("娣诲姞纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氱鍐呯粦瀹氱幓鐠� 鍙傛暟(EdgStorageCage edgStorageCage)") +// @PostMapping("/insertEdgStorageCage") +// @ResponseBody +// public Result insertEdgStorageCage(@RequestBody EdgStorageCage edgStorageCage) { +// boolean isSucess=edgStorageCageService.updateEdgStorageCage(edgStorageCage); +// return Result.build(200,"娣诲姞鎴愬姛",1); +// } + @ApiOperation("淇敼纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氬绗煎唴鏍呮牸杩涜銆愬惎鐢�/绂佺敤銆�") @PostMapping("/updateEdgStorageCage") @ResponseBody public Result updateEdgStorageCage(@RequestBody EdgStorageCage edgStorageCage) { boolean isSucess=edgStorageCageService.updateEdgStorageCage(edgStorageCage); return Result.build(200,"鏇存崲鎴愬姛",1); } - @ApiOperation("鍒犻櫎纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氬绗煎唴鏍呮牸鐜荤拑杩涜銆愭竻闄ゃ��") - @PostMapping("/deleteEdgStorageCage") + @ApiOperation("纾ㄨ竟缂撳瓨鐞嗙墖绗间俊鎭� 鍔熻兘锛氬绗煎唴鏍呮牸鐜荤拑杩涜銆愭竻闄�/鏇存崲/缁戝畾銆� EdgStorageCage鏍煎瓙淇℃伅,EdgStorageCageDetails 鐜荤拑淇℃伅 ") + @PostMapping("/edgStorageCageGlass") @ResponseBody - public Result deleteEdgStorageCage(@RequestBody EdgStorageCage edgStorageCage, EdgStorageCageDetails edgStorageCageDetails) { - boolean isSucess=edgStorageCageService.updateEdgStorageCage(edgStorageCage); + public Result edgStorageCageGlass(@RequestBody EdgStorageCage edgStorageCage,@RequestBody EdgStorageCageDetails edgStorageCageDetails) { + boolean isSucess=edgStorageCageService.updateEdgStorageCageDetails(edgStorageCage,edgStorageCageDetails); return Result.build(200,"鍒犻櫎鎴愬姛",1); } -- Gitblit v1.8.0