Pu Zhibing
2025-01-04 c542c56572ea8936301a6bdc736e23b846c8c006
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
@@ -49,10 +49,10 @@
   @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")
@@ -60,8 +60,8 @@
   @GetMapping("/app-user/listByIds")
   List<AppUser> listByIds(List<String> list);
   List<AppUser> listByIds(@RequestParam("ids") List<Long> list);
   /**
    * 根据用户名称模糊搜索用户列表
    * @param name
@@ -69,7 +69,7 @@
    */
   @PostMapping("/app-user/getAppUserByName")
   R<List<AppUser>> getAppUserByName(@RequestParam("name") String name);
   /**
    * 根据用户电话模糊搜索用户列表
    * @param phone
@@ -77,8 +77,24 @@
    */
   @PostMapping("/app-user/getAppUserByPhone")
   R<List<AppUser>> getAppUserByPhone(@RequestParam("phone") String phone);
   @PostMapping("/app-user/getAppUserByPhone1")
   R<AppUser> getAppUserByPhone1(String phone);
   R<AppUser> getAppUserByPhone1(@RequestParam("phone") String phone);
   /**
    * 检查会员等级变更
    * @param appUserId
    */
   @PostMapping("/app-user/vipUpgrade")
   void vipUpgrade(@RequestParam("appUserId") Long appUserId);
   /**
    * 用户降级检测
    */
   @PostMapping("/app-user/demotionDetection")
   void demotionDetection();
}