修改名称。

This commit is contained in:
2025-11-07 09:22:39 +08:00
parent d9cf55b053
commit a8dcfbb6a7
2203 changed files with 3 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
package com.xscm.moduleutil.presenter;
import android.app.Activity;
import com.xscm.moduleutil.activity.IPresenter;
import com.xscm.moduleutil.activity.IView;
import com.xscm.moduleutil.bean.CircleListBean;
import java.util.List;
public class CommentContacts {
public interface View extends IView<Activity> {
void getCommentList(List<CircleListBean.LikeList> likeLists);
}
public interface IIndexPre extends IPresenter {
void getCommentList(String id);
}
}