1e1cd9d35ff62f89e31860dc241e462d132df5a8.svn-base 627 B

12345678910111213141516171819202122232425262728293031
  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. void failureReasonsError(String msg);
  15. void failureReasonsSuccess(VerificationCodeBean data);
  16. }
  17. public interface Presenter {
  18. void agreeProtocol(String userId);
  19. void failureReasons(String userId);
  20. }
  21. }