| 123456789101112131415161718192021222324252627282930313233 |
- package eVVM.apk.ui.login.register;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/1
- * Describe: RegisterContract
- */
- public class RegisterContract {
- public interface View extends IMvpView {
- void registerError(String msg);
- void registerSuccess(VerificationCodeBean data);
- void getCodeError(String msg);
- void getCodeSuccess(VerificationCodeBean codeData);
- }
- public interface Presenter {
- void register(String telephone, String password, String code);
- void getCode(String telephone, int type); //
- }
- }
|