luodangjia
2025-02-07 8ffeb751b3a694e8d1cb6a21bec855f6c49b31b6
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);
   /**
@@ -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
@@ -77,6 +80,9 @@
    */
   @PostMapping("/app-user/getAppUserByPhone")
   R<List<AppUser>> getAppUserByPhone(@RequestParam("phone") String phone);
   @GetMapping("/app-user/getAppUserByPhoneNoFilter")
   public R<List<AppUser>> getAppUserByPhoneNoFilter(@RequestParam("phone") String phone);
   @PostMapping("/app-user/getAppUserByPhone1")
@@ -87,7 +93,7 @@
    * @param userId
    * @return
    */
   @PutMapping("/app-user/setLowerUserShop")
   @PostMapping("/app-user/setLowerUserShop")
   R<List<AppUser>>  setLowerUserShop(@RequestParam("userId") Long userId,@RequestParam("shopId") Integer shopId);
   
   
@@ -101,6 +107,15 @@
   
   
   /**
    * 检查会员降级
    * @param appUserId
    */
   @PostMapping("/app-user/vipDemotion")
   void vipDemotion(@RequestParam("appUserId") Long appUserId);
   /**
    * 用户降级检测
    */
   @PostMapping("/app-user/demotionDetection")