8e81f1b9f105c65a714e18f16ddad5c64a20c3d6.svn-base 711 B

123456789101112131415161718192021222324252627282930313233
  1. package eVVM.apk.ui.My.information;
  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/3
  8. * Describe: InformationContract
  9. */
  10. public class InformationContract {
  11. public interface View extends IMvpView {
  12. void informationError(String msg);
  13. void informationSuccess(VerificationCodeBean data);
  14. void getCodeError(String msg);
  15. void getCodeSuccess(VerificationCodeBean codeData);
  16. }
  17. public interface Presenter {
  18. void information(String telephone, String userName, String code, String password, String email);
  19. void getCode(String telephone, int type);
  20. }
  21. }