857065abeb145695fa9dd026c7585d6d345fed71.svn-base 472 B

1234567891011121314151617181920212223242526
  1. package eVVM.apk.ui.My.examine;
  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/7
  8. * Describe: ExamineContract
  9. */
  10. public class ExamineContract {
  11. public interface View extends IMvpView {
  12. void agreeError(String msg);
  13. void agreeSuccess(VerificationCodeBean data);
  14. }
  15. public interface Presenter {
  16. void agreeProtocol(String userId);
  17. }
  18. }