From 1d20897631b2ac7f0deefec490f49c0b9f3480b2 Mon Sep 17 00:00:00 2001 From: wzh <zhuhaow@phiskin.com> Date: 星期一, 08 八月 2022 17:13:30 +0800 Subject: [PATCH] 修改优惠券 --- phis-feign/src/main/java/com/hz/his/feign/service/dcp/SUserTagInfoService.java | 22 ++++++++++------------ 1 files changed, 10 insertions(+), 12 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/dcp/SUserTagInfoService.java b/phis-feign/src/main/java/com/hz/his/feign/service/dcp/SUserTagInfoService.java index 9251bb7..bd99279 100644 --- a/phis-feign/src/main/java/com/hz/his/feign/service/dcp/SUserTagInfoService.java +++ b/phis-feign/src/main/java/com/hz/his/feign/service/dcp/SUserTagInfoService.java @@ -1,14 +1,12 @@ package com.hz.his.feign.service.dcp; +import com.alibaba.fastjson.JSONObject; import com.hx.resultTool.Result; import com.hz.his.dto.dcp.TagRuleInfoItemDto; import com.hz.his.dto.dcp.UserTagInfoDto; import org.springframework.cloud.openfeign.FeignClient; +import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; - -import javax.servlet.http.HttpServletRequest; /** * 杩欓噷杩欎釜name 闇�瑕佸~鍐� 璇锋眰鐨勬湇鍔℃彁渚涜�呯殑娉ㄥ唽鍒皀acos Server涓婇潰鐨勬湇鍔″悕锛宲ath 鏄姹傛帴鍙e墠缂� @@ -17,8 +15,8 @@ public interface SUserTagInfoService { /**鏌ヨ鐢ㄦ埛鏍囩鍒楄〃*/ - @RequestMapping("/user/tag/info/list") - Result userTagInfoListData(@RequestBody(required = false) UserTagInfoDto userTagInfoDto); + @PostMapping("/user/tag/info/list") + Result userTagInfoListData(@RequestBody UserTagInfoDto userTagInfoDto); /** * 缂栬緫鐢ㄦ埛鏍囩 娣诲姞 缂栬緫 鍒犻櫎 涓夊悎涓�鎺ュ彛 @@ -40,15 +38,15 @@ * (鍒犻櫎鐨勬暟鎹甶d)"deleteUserTagInfoIdList": ["62d91ec5776bca1873344066"] * } */ - @RequestMapping(value = "/user/tag/info/edit", method = RequestMethod.POST) - Result edit(HttpServletRequest request, @RequestBody(required = false) String data); + @PostMapping(value = "/user/tag/info/edit") + Result edit(@RequestBody JSONObject data); /**鏍囩鍒嗙被鏍戝舰鏁版嵁 鏁版嵁妗堜緥锛歿"ascription":["customer","project","product","card","employee","promotion"]}*/ - @RequestMapping("/tag/rule/info/tree/data") - Result tagTypeTreeData(@RequestBody(required = false) String data); + @PostMapping("/tag/rule/info/tree/data") + Result tagTypeTreeData(@RequestBody JSONObject data); /**鏍囩鍒楄〃*/ - @RequestMapping("/tag/rule/item/list") - Result tagInfoListData(@RequestBody(required = false) TagRuleInfoItemDto tagRuleInfoItemDto); + @PostMapping("/tag/rule/item/list") + Result tagInfoListData(@RequestBody TagRuleInfoItemDto tagRuleInfoItemDto); } -- Gitblit v1.8.0