| 12345678910111213141516171819202122232425262728293031323334 |
- package eVVM.apk.ui.launcher.like;
- import java.util.List;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.LikeBean;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/10
- * Describe: LikeContract
- */
- public class LikeContract {
- public interface View extends IMvpView {
- void getLikeListError(String msg);
- void getLikeListSuccess(List<LikeBean.DataBean> data);
- void savaLikesError(String msg);
- void savaLikesSuccess(VerificationCodeBean data);
- }
- public interface Presenter {
- void getLikeList(String roleId);
- void savaLikes(String userId, String questionnaireIds);
- }
- }
|