对接语圈接口,

页面基本完成,评论完成一半,需要再调试
This commit is contained in:
2025-05-30 19:01:54 +08:00
parent 21e28e1342
commit fcb27eaa76
92 changed files with 4554 additions and 442 deletions

View File

@@ -0,0 +1,20 @@
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);
}
}