ApplyReplaceCardApi.java
396 Bytes
package com.shunzhi.parent.api;
import com.google.gson.JsonObject;
import io.reactivex.Observable;
import retrofit2.http.GET;
import retrofit2.http.Query;
/**
* Created by Administrator on 2018/4/18 0018.
*/
public interface ApplyReplaceCardApi {
@GET("/api/OneCard/AddStuCard")
Observable<JsonObject> getApplyReplaceCard(@Query("studentId,cardId") int studentId,String cardId);
}