1.
phpcjl
2024-12-10 071153064e6771e377ee148712be012dba9e13c5
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
@@ -40,14 +40,21 @@
   @GetMapping("/appUserShop/shop/{userId}")
   R<List<AppUserShop>> getAppUserShop(@PathVariable("userId") Long userId);
   @PostMapping("/appUserShop/addAppUserShop")
   R<Void> addAppUserShop(@RequestBody AppUserShop appUserShop);
   /**
    * 根据用户id获取用户的祖籍列表
    */
   @GetMapping("/appletLogin/getUserAncestorList")
   R<List<AppUser>> getUserAncestorList(@RequestParam("id") Long id);
   @GetMapping("/appletLogin/getSuperiorLeader")
   R<AppUser> getSuperiorLeader(@RequestParam("id") Long id);
   @PostMapping("/app-user/getVipCount")
   R<Long> getVipCount(@RequestParam("userId")Long userId, @RequestParam("vipId") Integer vipId );
}