修改拍卖房结构,目前修改到拍卖者上麦下麦
This commit is contained in:
@@ -328,7 +328,7 @@ public interface ApiServer {
|
||||
|
||||
@GET(Constants.GIFT_LIST)
|
||||
//获取礼物列表
|
||||
Observable<BaseModel<List<RoonGiftModel>>> getGiftList(@Query("label") int label);
|
||||
Observable<BaseModel<List<RoonGiftModel>>> getGiftList(@Query("label") int label,@Query("room_id")String room_id);
|
||||
|
||||
@GET(Constants.TOPIC_LIST)
|
||||
//获取话题
|
||||
|
||||
@@ -917,8 +917,8 @@ public class RetrofitClient {
|
||||
sApiServer.getGiftLabel(have_hot).compose(new DefaultTransformer<>()).subscribe(observer);
|
||||
}
|
||||
|
||||
public void getGiftList(int type, BaseObserver<List<RoonGiftModel>> observer) {
|
||||
sApiServer.getGiftList(type).compose(new DefaultTransformer<>()).subscribe(observer);
|
||||
public void getGiftList(int type,String roomId, BaseObserver<List<RoonGiftModel>> observer) {
|
||||
sApiServer.getGiftList(type,roomId).compose(new DefaultTransformer<>()).subscribe(observer);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user