package cn.flightfeather.thirdappmodule.httpservice; import java.util.List; import cn.flightfeather.thirdappmodule.bean.entity.ChangeAdvice; import cn.flightfeather.thirdappmodule.bean.entity.ChangeEffect; import cn.flightfeather.thirdappmodule.bean.entity.City; import cn.flightfeather.thirdappmodule.bean.entity.District; import cn.flightfeather.thirdappmodule.bean.entity.Domaincatalog; import cn.flightfeather.thirdappmodule.bean.entity.Domainitem; import cn.flightfeather.thirdappmodule.bean.entity.Evaluationrule; import cn.flightfeather.thirdappmodule.bean.entity.Evaluationsubrule; import cn.flightfeather.thirdappmodule.bean.entity.Gittype; import cn.flightfeather.thirdappmodule.bean.entity.Problemtype; import cn.flightfeather.thirdappmodule.bean.entity.Province; import cn.flightfeather.thirdappmodule.bean.entity.Scense; import cn.flightfeather.thirdappmodule.bean.entity.Site; import cn.flightfeather.thirdappmodule.bean.entity.Town; import retrofit2.Call; import retrofit2.http.GET; public interface InitDataService { @GET("scense/") Call> loadAllScense(); @GET("site/") Call> loadAllSite(); @GET("domaincatalog/") Call>loadAllDomainCatalog(); @GET("domainitem/") Call> loadAllDomainItem(); @GET("evaluationrule/") Call>loadAllEvaluationRule(); @GET("evaluationsubrule/") Call>loadAllEvaluationSubRule(); @GET("problemtype/") Call>loadAllProblemType(); @GET("gittype/") Call>loadAllGitType(); @GET("province/") Call> loadAllProvince(); @GET("city/") Call> loadAllCity(); @GET("district/") Call> loadAllDistrict(); @GET("town/") Call> loadAllTown(); @GET("changeadvice/") Call> loadAllChangeAdvice(); @GET("changeeffect/") Call> loadAllChangeEffect(); }