From 9d53292f41f54a6d740680195723c3e19f2ed62d Mon Sep 17 00:00:00 2001
From: 101captain <237651143@qq.com>
Date: 星期二, 09 八月 2022 15:28:25 +0800
Subject: [PATCH] Merge branch 'haucheng_panzhihua' into huacheng_test

---
 springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java |   66 ++++++++++++++++++++++++++++++--
 1 files changed, 61 insertions(+), 5 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java
index e11b2aa..4831ffd 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java
@@ -75,7 +75,7 @@
      * @param type
      *            用户类型 用户类型 1 小程序 2 运营平台 3 社区平台
      */
-    R<LoginUserInfoVO> getUserInfo(String name, int type);
+    R<LoginUserInfoVO> getUserInfo(String name, int type,String appId);
 
     /**
      * 三端获取登录用户信息
@@ -356,7 +356,7 @@
      *            所属app 1居民端app 2网格员端app 3商家端app
      * @return 协议内容
      */
-    R userAgreement(int type);
+    R userAgreement(int type,String appId);
 
     /**
      * 意见反馈
@@ -478,7 +478,7 @@
      *            1居民端app协议 2网格员端app协议 3商家端app协议 4隐私政策
      * @return 协议内容
      */
-    R agreement(Integer type);
+    R agreement(Integer type,String appId);
 
     /**
      * 维护用户最后登录时间
@@ -854,7 +854,43 @@
      */
     R checkExport(@RequestParam("account")String account, @RequestParam("password")String password,@RequestParam("oldPassword")String oldPassword);
 
-    R newIndexData(Integer type, Long streetId);
+    /**
+     * 数据看板:数据总览
+     * @param type 查看类型
+     * @param streetId 街道id
+     * @param areaCode 区县code
+     * */
+    R newIndexData(Integer type, Long streetId,Long areaCode);
+
+    /**
+     * 用户占比统计
+     * @param type 查看类型
+     * @param streetId 街道id
+     * @param areaCode 区县code
+     * @param range  */
+    R userRate(Integer type, Long streetId, Long areaCode, Integer range);
+
+    /**
+     * 真实用户占比统计
+     * @param type 查看类型
+     * @param streetId 街道id
+     * @param areaCode 区县code
+     * @param range  */
+    R realUser(Integer type, Long streetId, Long areaCode, Integer range);
+
+
+    /**
+     * 用户行为折线图
+     * @param type 查看类型
+     * @param streetId 街道id
+     * @param areaCode 区县code
+     * @param range  */
+    R userActivity(Integer type, Long streetId, Long areaCode, Integer range);
+
+    /**
+     * 获取区县即下属街道名
+     * */
+    R getAreaAndStreet();
 
     /**
      * uu洗车通知推送
@@ -862,5 +898,25 @@
      * @param orderStatus
      * @return
      */
-    R uuPush(@RequestParam("phone")String phone,@RequestParam("orderStatus")Integer orderStatus);
+    R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus);
+
+    /**
+     * 获取城镇或村落列表
+     * */
+    R getCommunityList(String name,Long id);
+
+    /**
+     * 重置密码
+     * @param type
+     * @param account
+     * @return
+     */
+    R resetPassword(Integer type,String account);
+
+    /**
+     * 天府通办登录
+     * @param uuLoginVO
+     * @return
+     */
+    R tfLogin(UuLoginVO uuLoginVO);
 }

--
Gitblit v1.7.1