88474cd154b491b0b89ac9fe46224b3eb4d19782.svn-base 661 B

12345678910111213141516171819202122232425262728293031
  1. package eVVM.apk.ui.login.findpwd;
  2. import eVVM.apk.mvp.IMvpView;
  3. import eVVM.apk.ui.bean.VerificationCodeBean;
  4. /**
  5. * Created by Android Studio.
  6. * User: zbb
  7. * Date: 2019/6/1
  8. * Describe: FindpwdContract
  9. */
  10. public class FindpwdContract {
  11. public interface View extends IMvpView {
  12. void findpwdError(String msg);
  13. void findpwdSuccess(VerificationCodeBean data);
  14. void getCodeError(String msg);
  15. void getCodeSuccess(VerificationCodeBean codeData);
  16. }
  17. public interface Presenter {
  18. void findpwd(String telephone, String password, String code);
  19. void getCode(String telephone, int type); //
  20. }
  21. }