| 12345678910111213141516171819202122232425262728293031 |
- package eVVM.apk.ui.My.examine;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/7
- * Describe: ExamineContract
- */
- public class ExamineContract {
- public interface View extends IMvpView {
- void agreeError(String msg);
- void agreeSuccess(VerificationCodeBean data);
- void failureReasonsError(String msg);
- void failureReasonsSuccess(VerificationCodeBean data);
- }
- public interface Presenter {
- void agreeProtocol(String userId);
- void failureReasons(String userId);
- }
- }
|