| | |
| | | public RemoteMeditationService create(Throwable cause) { |
| | | return new RemoteMeditationService() { |
| | | @Override |
| | | public R<String> getQuestionCount() { |
| | | return R.fail("远程调用 查询待回复内容数量"); |
| | | } |
| | | |
| | | @Override |
| | | public R<String> getMeditationCount() { |
| | | return R.fail("远程调用 查询疗愈音频数量"); |
| | | } |
| | | |
| | | @Override |
| | | public R<List<Long>> getMeditationIdsByName(String name) { |
| | | return R.fail("获远程调用 通过疗愈名字查询疗愈ids失败"); |
| | | } |
| | |
| | | } |
| | | |
| | | @Override |
| | | public R<Page<Meditation>> getMeditationById(Integer pageCurr, Integer pageSize) { |
| | | public R<Page<Meditation>> getMeditationById(Integer pageCurr, Integer pageSize, Long id) { |
| | | return R.fail("查询收藏冥想失败"); |
| | | } |
| | | |
| | | @Override |
| | | public R<Page<Meditation>> getMeditationByIds(Integer pageCurr, Integer pageSize, String ids) { |
| | | return null; |
| | | } |
| | | |
| | | |
| | | }; |
| | | } |
| | | } |