5e0ff339f6d3e0af3bd45516eed910586d7ed981.svn-base 400 B

1234567891011121314151617181920
  1. package eVVM.apk.ui.My.information;
  2. import eVVM.apk.ui.bean.VerificationCodeBean;
  3. /**
  4. * Created by Android Studio.
  5. * User: zbb
  6. * Date: 2019/6/3
  7. * Describe: InformationOnListener
  8. */
  9. public interface InformationOnListener {
  10. void onSucceed(VerificationCodeBean data);
  11. void onFail(String msg);
  12. void onCodeSucceed(VerificationCodeBean codeData);
  13. void onCodeFail(String msg);
  14. }