ApplyReplaceCardApi.java
407 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") int studentId,@Query("onecard") String cardId);
}