From 2a26351516be46c6af492a389bb5360cca333297 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期四, 04 八月 2022 15:41:00 +0800
Subject: [PATCH] 活动积分修改
---
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java | 10 ++++++++--
1 files changed, 8 insertions(+), 2 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 ed08c9a..8c2cf06 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);
/**
* 维护用户最后登录时间
@@ -1264,4 +1267,7 @@
*/
@GetMapping("/uuPush")
R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus);
+
+ @GetMapping("/communityList")
+ R communityList(@RequestParam("name") String name, @RequestParam("id") Long id);
}
--
Gitblit v1.7.1