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<List<Scense>> loadAllScense();
|
|
@GET("site/")
|
Call<List<Site>> loadAllSite();
|
|
@GET("domaincatalog/")
|
Call<List<Domaincatalog>>loadAllDomainCatalog();
|
|
@GET("domainitem/")
|
Call<List<Domainitem>> loadAllDomainItem();
|
|
@GET("evaluationrule/")
|
Call<List<Evaluationrule>>loadAllEvaluationRule();
|
|
@GET("evaluationsubrule/")
|
Call<List<Evaluationsubrule>>loadAllEvaluationSubRule();
|
|
@GET("problemtype/")
|
Call<List<Problemtype>>loadAllProblemType();
|
|
@GET("gittype/")
|
Call<List<Gittype>>loadAllGitType();
|
|
@GET("province/")
|
Call<List<Province>> loadAllProvince();
|
|
@GET("city/")
|
Call<List<City>> loadAllCity();
|
|
@GET("district/")
|
Call<List<District>> loadAllDistrict();
|
|
@GET("town/")
|
Call<List<Town>> loadAllTown();
|
|
@GET("changeadvice/")
|
Call<List<ChangeAdvice>> loadAllChangeAdvice();
|
|
@GET("changeeffect/")
|
Call<List<ChangeEffect>> loadAllChangeEffect();
|
}
|