fa7f926fa7775d960b44aa302b7c9376ae1af4d5.svn-base 470 B

12345678910111213141516171819202122232425
  1. package eVVM.apk.ui.report.vndetail;
  2. import eVVM.apk.mvp.IMvpView;
  3. import eVVM.apk.ui.bean.VnDetailBean;
  4. /**
  5. * Created by Android Studio.
  6. * User: zbb
  7. * Date: 2019/6/6
  8. * Describe: VnDetailContract
  9. */
  10. public class VnDetailContract {
  11. public interface View extends IMvpView {
  12. void getDetailError(String msg);
  13. void getDetailSuccess(VnDetailBean data);
  14. }
  15. public interface Presenter {
  16. void getDetail(String chipNumber);
  17. }
  18. }