| | |
| | | @POST(Apis.completeLearning) |
| | | fun completeLearning(@Body body: String): Flowable<ResultData<Any>> |
| | | |
| | | @POST(Apis.completeStory) |
| | | fun completeStory(@Body body: String): Flowable<ResultData<Any>> |
| | | |
| | | @POST(Apis.gameAchievement) |
| | | fun gameAchievement(@Body body: String): Flowable<ResultData<Any>> |
| | | |
| | | @GET(Apis.teamSchedule) |
| | | fun teamSchedule(@Query("day") day:Int,@Query("type") type:Int,@Query("week") week:Int): Flowable<ResultData<ProgressBean>> |
| | | |
| | |
| | | @GET(Apis.pictureMateVoice) |
| | | fun pictureMateVoice(@Query("day")day:Int,@Query("quarter")quarter:Int,@Query("week")week:Int): Flowable<ResultData<SubjectBean>> |
| | | |
| | | @GET(Apis.lookPictureDbu) |
| | | fun lookPictureDbu(@Query("quarter")quarter:Int,@Query("week")week:Int): Flowable<ResultData<StoryBean>> |
| | | |
| | | @GET(Apis.gameHearing) |
| | | fun gameHearing(@Query("quarter")quarter:Int,@Query("week")week:Int,@Query("difficulty")difficulty:Int): Flowable<ResultData<GameBean>> |
| | | |
| | | @GET(Apis.gameMemory) |
| | | fun gameMemory(@Query("quarter")quarter:Int,@Query("week")week:Int): Flowable<ResultData<MemoryBean>> |
| | | |
| | | @GET(Apis.frameworkMemory) |
| | | fun frameworkMemory(@Query("quarter")quarter:Int,@Query("week")week:Int): Flowable<ResultData<StoryBean>> |
| | | |
| | | @GET(Apis.redeemNow) |
| | | fun redeemNow(@Query("goodId")goodId:String): Flowable<ResultData<GoodsOrder>> |
| | | |