| | |
| | | */ |
| | | @FeignClient(contextId = "remoteAppUserService", value = ServiceNameConstants.APP_USER_SERVICE, fallbackFactory = RemoteAppUserFallbackFactory.class) |
| | | public interface RemoteAppUserService { |
| | | @GetMapping("/addNotice/{id}/{courseId}/{userId}/{price}") |
| | | public R addNotice(@PathVariable("id")String id,@PathVariable("courseId")String courseId |
| | | ,@PathVariable("userId")String userId,@PathVariable("price")String price); |
| | | @GetMapping("/client/app-user/getUserByPhone/{phone}") |
| | | public R<AppUser> getUserByPhone(@PathVariable("phone")String phone); |
| | | @PostMapping("/user/app-user-viewing-history/getMeditationHistoryCount/{id}") |
| | | public R<Long> getMeditationHistoryCount(@PathVariable("id") Long id); |
| | | @PostMapping("/user/app-user-viewing-history/getCourseHistoryCount/{id}") |