package eVVM.apk.ui.My.information; import eVVM.apk.mvp.IMvpView; import eVVM.apk.ui.bean.VerificationCodeBean; /** * Created by Android Studio. * User: zbb * Date: 2019/6/3 * Describe: InformationContract */ public class InformationContract { public interface View extends IMvpView { void informationError(String msg); void informationSuccess(VerificationCodeBean data); void getCodeError(String msg); void getCodeSuccess(VerificationCodeBean codeData); } public interface Presenter { void information(String telephone, String userName, String code, String password, String email); void getCode(String telephone, int type); } }