Commit 07a11b16b26097da042427fff1062b39b73e9717
1 parent
4a5ad6a1
Exists in
yxb_dev
and in
2 other branches
no message
Showing
1 changed file
with
29 additions
and
0 deletions
Show diff stats
app/src/main/java/com/shunzhi/parent/contract/report/ReportDetialContract.java
0 → 100644
@@ -0,0 +1,29 @@ | @@ -0,0 +1,29 @@ | ||
1 | +package com.shunzhi.parent.contract.report; | ||
2 | + | ||
3 | +import com.google.gson.JsonObject; | ||
4 | +import com.share.mvpsdk.base.BasePresenter; | ||
5 | +import com.share.mvpsdk.base.IBaseModel; | ||
6 | +import com.share.mvpsdk.base.IBaseView; | ||
7 | +import com.shunzhi.parent.bean.report.SceneDetialBean; | ||
8 | + | ||
9 | +import java.util.List; | ||
10 | + | ||
11 | +import io.reactivex.Observable; | ||
12 | + | ||
13 | +/** | ||
14 | + * Created by Administrator on 2018/4/3 0003. | ||
15 | + */ | ||
16 | + | ||
17 | +public interface ReportDetialContract { | ||
18 | + abstract class ReportDetialPresenter extends BasePresenter<IReportDetialModel,IReportDetialView>{ | ||
19 | + public abstract void reportDetialResult(int screenId,String objectId,int schoolId,int objectType,String startDate,String endDate); | ||
20 | + } | ||
21 | + interface IReportDetialModel extends IBaseModel { | ||
22 | + Observable<JsonObject> getReportDetialResult(int screenId, String objectId, int schoolId, int objectType, String startDate, String endDate); | ||
23 | + } | ||
24 | + interface IReportDetialView extends IBaseView { | ||
25 | + void showDetialList(List<SceneDetialBean> list); | ||
26 | + void showDetialInfo(String rank, String scoree, String pscoree, String sceneName); | ||
27 | + | ||
28 | + } | ||
29 | +} |