From 0449a6264819bce3869f47b9e5bd3729f158db54 Mon Sep 17 00:00:00 2001
From: luofl <1442745593@qq.com>
Date: 星期五, 14 三月 2025 16:05:24 +0800
Subject: [PATCH] 迭代版本:2.28
---
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java | 66 +++++++++++++++++++++++++++++++-
1 files changed, 63 insertions(+), 3 deletions(-)
diff --git a/ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java b/ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
index 9acea8a..95225e0 100644
--- a/ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
+++ b/ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
@@ -49,17 +49,17 @@
@GetMapping("/appletLogin/getUserAncestorList")
R<List<AppUser>> getUserAncestorList(@RequestParam("id") Long id);
- @GetMapping("/appletLogin/getSuperiorLeader")
+ @PostMapping("/app-user/getSuperiorLeader")
R<AppUser> getSuperiorLeader(@RequestParam("id") Long id);
- @GetMapping("/app-user/getTopUsers")
+ @PostMapping("/app-user/getTopUsers")
R<List<AppUser>> getTopUsers();
@PostMapping("/app-user/getVipCount")
R<Long> getVipCount(@RequestParam("userId")Long userId, @RequestParam("vipId") Integer vipId );
- @GetMapping("/app-user/listByIds")
+ @PostMapping("/app-user/listByIds")
List<AppUser> listByIds(@RequestParam("ids") List<Long> list);
/**
@@ -70,6 +70,9 @@
@PostMapping("/app-user/getAppUserByName")
R<List<AppUser>> getAppUserByName(@RequestParam("name") String name);
+ @GetMapping("/app-user/getAppUserByNameNoFilter")
+ public R<List<AppUser>> getAppUserByNameNoFilter(@RequestParam("name") String name);
+
/**
* 根据用户电话模糊搜索用户列表
* @param phone
@@ -78,7 +81,64 @@
@PostMapping("/app-user/getAppUserByPhone")
R<List<AppUser>> getAppUserByPhone(@RequestParam("phone") String phone);
+ /**
+ * 根据用户电话模糊搜索用户列表(包含被删除的用户)
+ * @param phone
+ * @return
+ */
+ @GetMapping("/app-user/getAppUserByPhoneNoFilter")
+ public R<List<AppUser>> getAppUserByPhoneNoFilter(@RequestParam("phone") String phone);
+
@PostMapping("/app-user/getAppUserByPhone1")
R<AppUser> getAppUserByPhone1(@RequestParam("phone") String phone);
+
+ /**
+ * 获得指定用户的下级用户
+ * @param userId
+ * @return
+ */
+ @PostMapping("/app-user/setLowerUserShop")
+ R<List<AppUser>> setLowerUserShop(@RequestParam("userId") Long userId,@RequestParam("shopId") Integer shopId);
+
+
+
+ /**
+ * 检查会员等级变更
+ * @param appUserId
+ */
+ @PostMapping("/app-user/vipUpgrade")
+ void vipUpgrade(@RequestParam("appUserId") Long appUserId);
+
+ /**
+ * 消费后检查会员等级变更
+ */
+ @PostMapping("/app-user/vipConsumption")
+ void vipConsumption(@RequestParam("appUserId") Long appUserId);
+
+
+ /**
+ * 检查会员降级
+ * @param appUserId
+ */
+ @PostMapping("/app-user/vipDemotion")
+ void vipDemotion(@RequestParam("appUserId") Long appUserId);
+
+
+
+ /**
+ * 用户降级检测
+ */
+ @PostMapping("/app-user/demotionDetection")
+ void demotionDetection();
+
+
+ /**
+ * 清空绑定门店的用户门店数据
+ * @param shopId
+ * @return
+ */
+ @PostMapping("/app-user/clearBindShop")
+ R clearBindShop(@RequestParam("shopId") Integer shopId);
+
}
--
Gitblit v1.7.1