From d345374efced70c4ccff1c1bbcb49f7b8c4b9fd4 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期二, 09 八月 2022 13:27:41 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java index e120fcc..1504213 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java @@ -144,6 +144,9 @@ @GetMapping("resetPassword") R resetPassword(@RequestParam("userId") Long userId); + @GetMapping("/resetPasswordAccount") + R resetPasswordAccount(@RequestParam("type")Integer type,@RequestParam("account")String account); + /** * 批量重置密码用户登录密码默认admin123456 * @@ -536,7 +539,7 @@ * @return 协议内容 */ @PostMapping("useragreement") - R userAgreement(@RequestParam("type") int type); + R userAgreement(@RequestParam("type") int type,@RequestParam("appid")String appId); /** * uu洗车登录 @@ -697,7 +700,7 @@ * @return 协议内容 */ @PostMapping("agreement") - R agreement(@RequestParam("type") Integer type); + R agreement(@RequestParam("type") Integer type,@RequestParam("appId")String appId); /** * 维护用户最后登录时间 @@ -1254,8 +1257,6 @@ @GetMapping("/indexData/getAreaAndStreet") R getAreaAndStreet(); - - /** * uu洗车推送 * @param washPhone @@ -1269,4 +1270,8 @@ @GetMapping("/communityList") R communityList(@RequestParam("name") String name, @RequestParam("id") Long id); + + + @PostMapping("/tfLogin") + R tfLogin(@RequestBody UuLoginVO uuLoginVO); } -- Gitblit v1.7.1