1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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();
}