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