From 9eb00a96c64fabfe1a17d49844602736456762fa Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期四, 06 一月 2022 16:28:17 +0800
Subject: [PATCH] 商业街商家后台登录&支付完成处理

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 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 955f126..85c9a21 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
@@ -7999,4 +7999,23 @@
      */
     @GetMapping("/shop/checkStoreIsValid")
     R checkStoreIsValid(@RequestParam("userId") Long userId);
+
+    /**
+     * 根据account查询微商业街商家信息
+     * @param account
+     * @return
+     */
+    @GetMapping("/microcommercialstreet/getMcsMerchantByAccount")
+    R getMcsMerchantByAccount(@RequestParam("account") String account);
+
+    /**
+     * 完成订单更新/新增商家信息
+     * @param merchantName
+     * @param configId
+     * @param userId
+     * @return
+     */
+    @GetMapping("/microcommercialstreet/updateAfterOrder")
+    R updateMcsMerchantAfterOrder(@RequestParam(value = "merchantName", required = false) String merchantName,
+                                  @RequestParam("configId") Long configId, @RequestParam("userId") Long userId);
 }

--
Gitblit v1.7.1