ApplySigninApi.java
442 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/19 0019.
*/
public interface ApplySigninApi {
@GET("/api/ParentService/GetAttendanceList")
Observable<JsonObject> getApplySignin(@Query("studentid") int studentId, @Query("schoolid") int schoolId,@Query("starttime") String date);
}