From c0176109caa96cab00d402075e81fa23eb3f85b8 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期一, 28 八月 2023 15:47:22 +0800 Subject: [PATCH] 新增商家端商家类型 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 70542af..afd9189 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -11334,7 +11334,8 @@ */ @GetMapping("/VolunteerType/volunteerTypeGetList") public R volunteerTypeGetList(@RequestParam("pageNum") int pageNum, - @RequestParam("pageSize") int pageSize); + @RequestParam("pageSize") int pageSize, + @RequestParam("type") String type); /** * 新增 @@ -11528,7 +11529,7 @@ * @param * @return */ - @GetMapping("order/getList") + @GetMapping("/VolunteerIntegralMerchant/order/getList") public R getList(@RequestParam("pageNum") int pageNum, @RequestParam("pageSize") int pageSize, @RequestParam(value = "goodsId", required = false) String goodsId, @@ -11544,7 +11545,7 @@ * @param id * @return */ - @GetMapping("order/getData") + @GetMapping("/VolunteerIntegralMerchant/order/getData") public R getData(@RequestParam("id") String id); /** @@ -11552,7 +11553,7 @@ * @param * @return */ - @PostMapping("/order/insertData") + @PostMapping("/VolunteerIntegralMerchant/order/insertData") public R insertData(@RequestBody VolunteerCreditsExchangeVO item); /** @@ -11560,7 +11561,7 @@ * @param item * @return */ - @PostMapping("/order/update") + @PostMapping("/VolunteerIntegralMerchant/order/update") public R update(@RequestBody VolunteerCreditsExchangeVO item); /** @@ -11568,7 +11569,7 @@ * @param id * @return */ - @DeleteMapping("/order/delete") + @DeleteMapping("/VolunteerIntegralMerchant/order/delete") public R delete(@RequestParam("id") String id); /** @@ -11576,7 +11577,7 @@ * @param id * @return */ - @GetMapping("/order/conditionData") + @GetMapping("/VolunteerIntegralMerchant/order/conditionData") public R conditionData(@RequestParam("id") String id); -- Gitblit v1.7.1