package cn.flightfeather.thirdapp.httpservice;
|
|
import java.util.List;
|
|
import cn.flightfeather.thirdapp.bean.ChangeAdvice;
|
import cn.flightfeather.thirdapp.bean.ChangeEffect;
|
import cn.flightfeather.thirdapp.bean.City;
|
import cn.flightfeather.thirdapp.bean.District;
|
import cn.flightfeather.thirdapp.bean.Domaincatalog;
|
import cn.flightfeather.thirdapp.bean.Domainitem;
|
import cn.flightfeather.thirdapp.bean.Evaluationrule;
|
import cn.flightfeather.thirdapp.bean.Evaluationsubrule;
|
import cn.flightfeather.thirdapp.bean.Gittype;
|
import cn.flightfeather.thirdapp.bean.Problemtype;
|
import cn.flightfeather.thirdapp.bean.Province;
|
import cn.flightfeather.thirdapp.bean.Scense;
|
import cn.flightfeather.thirdapp.bean.Site;
|
import cn.flightfeather.thirdapp.bean.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();
|
}
|