From c5f9d214b2d63506cfbab5cc977610da3b133ec4 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 21 十一月 2022 10:11:33 +0800 Subject: [PATCH] Merge branch 'local_20221104' into huacheng_test --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 51 insertions(+), 2 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 dbaed8f..63ac596 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 @@ -10590,7 +10590,7 @@ @GetMapping("/sanshuo/expert/backstageList2") R expertBackStageList(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "page",required = false)Integer page, - @RequestParam(value = "size",required = false)Integer size); + @RequestParam(value = "size",required = false)Integer size,@RequestParam(value = "keyWord",required = false)String keyWord); /** * 查询社区id集合 @@ -10975,10 +10975,59 @@ R wxPayFlower(@RequestBody OrderPayDTO orderPayDTO); /** + * 获取社区动态置顶banner + * @param communityId 社区id + * */ + @PostMapping("/easyphoto/getUserRewardsNew") + R getUserRewardsNew(@RequestParam("userId") Long userId, @RequestParam("communityId") Long communityId); + + /** * 统计查询订单数量 * @param deliveryType * @return */ @GetMapping("/shopFlower/selectCountByDeliveryType") - R selectCountByDeliveryType(Integer deliveryType); + R selectCountByDeliveryType(Integer deliveryType,Long storeId); + + /** + * 查询我的店铺各类统计数据 + * @param storeId + * @return + */ + @GetMapping("/shopFlower/selectCountByStoreId") + R selectCountByStoreId(Long storeId); + + + /** + * 创建退款订单 + * @param comShopFlowerRefundOrderDTO + * @return + */ + @PostMapping("/shopFlower/createRefundOrder") + R createRefundOrder(@RequestBody ComShopFlowerRefundOrderDTO comShopFlowerRefundOrderDTO); + + /** + * 分页查询 + * @param pageComOrderRefundDTO + * @return + */ + @PostMapping("/shopFlower/pageRefundOrder") + R pageRefundOrder(@RequestBody PageComOrderRefundDTO pageComOrderRefundDTO); + + /** + * 修改退款订单 + * @param comShopFlowerRefundOrderDTO + * @return + */ + @PostMapping("/shopFlower/updateRefundOrder") + R updateRefundOrder(@RequestBody ComShopFlowerRefundOrderDTO comShopFlowerRefundOrderDTO); + + + /** + * 商家后台-退款申请统计 + * @param storeId + * @return + */ + @GetMapping("/shopFlower/selectCountGroupStatus") + R selectCountGroupStatus(Long storeId); } -- Gitblit v1.7.1