| 1234567891011121314151617181920 |
- package eVVM.apk.ui.My.information;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/3
- * Describe: InformationOnListener
- */
- public interface InformationOnListener {
- void onSucceed(VerificationCodeBean data);
- void onFail(String msg);
- void onCodeSucceed(VerificationCodeBean codeData);
- void onCodeFail(String msg);
- }
|