luodangjia
2024-12-16 a8d2cb07f6440dc54dc4005b0b06d5a47cb1517d
ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/feignClient/AppUserClient.java
@@ -40,6 +40,9 @@
   @GetMapping("/appUserShop/shop/{userId}")
   R<List<AppUserShop>> getAppUserShop(@PathVariable("userId") Long userId);
   @PostMapping("/appUserShop/addAppUserShop")
   R<Void> addAppUserShop(@RequestBody AppUserShop appUserShop);
   /**
    * 根据用户id获取用户的祖籍列表
    */
@@ -54,4 +57,8 @@
   @PostMapping("/app-user/getVipCount")
   R<Long> getVipCount(@RequestParam("userId")Long userId, @RequestParam("vipId") Integer vipId );
   @GetMapping("/getAppUserByPhone")
   public R<AppUser> getAppUserByPhone(@RequestParam("phone") String phone);
}