From 0cf26c2fbb74f5260f05ad9bc9d4f46f1d609d0c Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期日, 24 七月 2022 14:07:53 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 56 insertions(+), 3 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 165afd4..a59304d 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 @@ -18,6 +18,7 @@ import com.panzhihua.common.model.vos.*; import com.panzhihua.common.model.vos.shop.ShopStoreVO; import com.panzhihua.common.model.vos.user.*; +import org.springframework.web.bind.annotation.RequestParam; /** * @program: springcloud_k8s_panzhihuazhihuishequ @@ -74,7 +75,7 @@ * @param type * 用户类型 用户类型 1 小程序 2 运营平台 3 社区平台 */ - R<LoginUserInfoVO> getUserInfo(String name, int type); + R<LoginUserInfoVO> getUserInfo(String name, int type,String appId); /** * 三端获取登录用户信息 @@ -355,7 +356,7 @@ * 所属app 1居民端app 2网格员端app 3商家端app * @return 协议内容 */ - R userAgreement(int type); + R userAgreement(int type,String appId); /** * 意见反馈 @@ -845,5 +846,57 @@ */ R uuLogin(UuLoginVO uuLoginVO); - R newIndexData(Integer type, Long streetId); + /** + * 导出验证密码 + * @param account + * @param password + * @return + */ + R checkExport(@RequestParam("account")String account, @RequestParam("password")String password,@RequestParam("oldPassword")String oldPassword); + + /** + * 数据看板:数据总览 + * @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洗车通知推送 + * @param phone + * @param orderStatus + * @return + */ + R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus); } -- Gitblit v1.7.1