From 79f8fc87c9c9e4866a477dfe4485eedda5976209 Mon Sep 17 00:00:00 2001 From: jiangqs <jiangqs> Date: 星期二, 18 七月 2023 19:41:20 +0800 Subject: [PATCH] bug和企业微信同步 --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java | 36 ++++++++++++++++++++++++++++++++++-- 1 files changed, 34 insertions(+), 2 deletions(-) diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java index eba5c59..783d14d 100644 --- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java +++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java @@ -97,7 +97,7 @@ * @param shopTotalChangeDto * @return R */ - @PostMapping("/changeShopTotal") + @PostMapping("/shop/changeShopTotal") public R changeShopTotal(@RequestBody ShopTotalChangeDto shopTotalChangeDto); /** @@ -107,6 +107,38 @@ * @param userId * @return R<MemberTaskSimpleVo> */ - @PostMapping("/member/getLastMemberTask") + @PostMapping("/shop/getLastMemberTask") public R<MemberTaskSimpleVo> getLastMemberTask(@RequestBody Long userId); + + /** + * @description 获取商户下属代理商 + * @author jqs + * @date 2023/7/3 17:26 + * @return R<List<Long>> + */ + @PostMapping("/shop/listShopIdByShopId") + public R<List<Long>> listShopIdByShopId(@RequestBody Long shopId); + + /** + * @description 获取未回复数量 + * @author jqs + * @date 2023/7/5 12:49 + * @param + * @return R<Integer> + */ + @PostMapping("/shop/getUnReplaySuggestVo") + public R<Integer> getUnReplaySuggestVo(); + + /** + * @description 获取商户营销状态 + * @author jqs + * @date 2023/7/7 14:05 + * @param shopId + * @return R<Integer> + */ + @PostMapping("/shop/getShopMarketingStatus") + public R<Integer> getShopMarketingStatus(@RequestBody Long shopId); + + @PostMapping("/shop/getShopByBelongUserId") + public R<ShopRelUserVo> getShopByBelongUserId(@RequestBody Long userId); } -- Gitblit v1.7.1