Files
yusheng-android/moduleUtil/src/main/java/com/qxcm/moduleutil/presenter/CommentContacts.java

21 lines
589 B
Java
Raw Normal View History

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);
}
}