| 123456789101112131415161718192021 |
- package eVVM.apk.ui.My.examine;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/7
- * Describe: ExamineOnListener
- */
- public interface ExamineOnListener {
- void onSucceed(VerificationCodeBean data);
- void onFail(String msg);
- void onfailmsgSucceed(VerificationCodeBean data);
- void onfailmsgFail(String msg);
- }
|