From c6e9ccc99a191d61b9599629702f84f495516095 Mon Sep 17 00:00:00 2001
From: 张天森 <1292933220@qq.com>
Date: 星期日, 09 十月 2022 09:34:46 +0800
Subject: [PATCH] 用户信息增加登陆用户是否为三说会堂专家

---
 springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java |   36 ++++++++++++++++++++++++++++++++----
 1 files changed, 32 insertions(+), 4 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
index 274bd08..5558977 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
@@ -11,6 +11,7 @@
 import com.panzhihua.common.model.dtos.community.microCommercialStreet.BindUserPhoneDTO;
 import com.panzhihua.common.model.dtos.community.microCommercialStreet.LoginWithPhoneDTO;
 import com.panzhihua.common.model.dtos.community.microCommercialStreet.McsMerchantDTO;
+import com.panzhihua.common.service.community.CommunityService;
 import io.swagger.annotations.ApiImplicitParam;
 import io.swagger.annotations.ApiImplicitParams;
 import io.swagger.annotations.ApiOperation;
@@ -1404,8 +1405,9 @@
     public R userActivity(@RequestParam(value = "type",required = false) Integer type,
                           @RequestParam(value = "streetId",required = false) Long streetId,
                           @RequestParam(value = "areaCode",required = false) Long areaCode,
-                          @RequestParam(value = "range",required = false) Integer range){
-        return userService.userActivity(type,streetId,areaCode,range);
+                          @RequestParam(value = "range",required = false) Integer range,
+                          @RequestParam(value = "appId",required = false) String appId){
+        return userService.userActivity(type,streetId,areaCode,range, appId);
     }
 
 
@@ -1441,12 +1443,38 @@
     }
 
     @GetMapping("/resetPasswordAccount")
-    public R resetPasswordAccount(@RequestParam("type")Integer type,@RequestParam("account")String account){
-        return userService.resetPassword(type,account);
+    public R resetPasswordAccount(@RequestParam("type")Integer type,@RequestParam("account")String account,@RequestParam("appId")String appId){
+        return userService.resetPassword(type,account,appId);
     }
 
     @PostMapping("/tfLogin")
     public R tfLogin(@RequestBody UuLoginVO uuLoginVO){
         return userService.tfLogin(uuLoginVO);
     }
+
+    /**
+     * 三说会堂新增业务中心或专家账号
+     * */
+    @PostMapping("/sanshuoAddUser")
+    public R sanshuoAddUser(@RequestBody AdministratorsUserVO administratorsUserVO){
+        return userService.addExpertOrIndustryCenter(administratorsUserVO);
+    }
+
+    /**
+     * 三说会堂后台重置密码
+     * */
+    @GetMapping("/sanshuoResetPassword")
+    public R sanshuoAddUser(@RequestParam("account") String account,@RequestParam("pass")String password){
+        return userService.resetPassExpertOrIndustryCenter(account,password);
+    }
+
+    /**
+     * 移除账号专家权限
+     *
+     */
+    @GetMapping("/removeExpertRole")
+    public R removeExpertRole(@RequestParam(value = "phone",required = false)String phone){
+        return userService.removeExpertRole(phone);
+    }
+
 }

--
Gitblit v1.7.1