package eVVM.apk.ui.My.examine; import eVVM.apk.mvp.IMvpView; import eVVM.apk.ui.bean.VerificationCodeBean; /** * Created by Android Studio. * User: zbb * Date: 2019/6/7 * Describe: ExamineContract */ public class ExamineContract { public interface View extends IMvpView { void agreeError(String msg); void agreeSuccess(VerificationCodeBean data); } public interface Presenter { void agreeProtocol(String userId); } }