21 lines
589 B
Java
21 lines
589 B
Java
|
|
package com.qxcm.moduleutil.presenter;
|
||
|
|
|
||
|
|
import android.app.Activity;
|
||
|
|
|
||
|
|
import com.qxcm.moduleutil.activity.IPresenter;
|
||
|
|
import com.qxcm.moduleutil.activity.IView;
|
||
|
|
import com.qxcm.moduleutil.bean.CommentBean;
|
||
|
|
|
||
|
|
public class CommentContacts {
|
||
|
|
public interface View extends IView<Activity> {
|
||
|
|
void getCommentList(CommentBean commentBean);
|
||
|
|
|
||
|
|
void commentZone();
|
||
|
|
|
||
|
|
}
|
||
|
|
public interface IIndexPre extends IPresenter {
|
||
|
|
void getCommentList(String id,String page,String page_limit);
|
||
|
|
void commentZone(String id,String content,String pid,String reply_to);
|
||
|
|
}
|
||
|
|
}
|