puzhibing
2025-01-13 acccff9860b271d55c55dc87486f7c20b9896e6c
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
@@ -59,7 +59,7 @@
   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);
   /**
@@ -81,6 +81,14 @@
   @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);
   
   
   
@@ -90,4 +98,20 @@
    */
   @PostMapping("/app-user/vipUpgrade")
   void vipUpgrade(@RequestParam("appUserId") Long appUserId);
   /**
    * 用户降级检测
    */
   @PostMapping("/app-user/demotionDetection")
   void demotionDetection();
   /**
    * 清空绑定门店的用户门店数据
    * @param shopId
    * @return
    */
   @PostMapping("/app-user/clearBindShop")
   R clearBindShop(@RequestParam("shopId") Integer shopId);
}