e92255ac4943c40db9572db672f8943078f6159c.svn-base 537 B

1234567891011121314151617181920212223242526
  1. package eVVM.apk.ui.vaccination.categoryTimes;
  2. import java.util.List;
  3. import eVVM.apk.mvp.IMvpView;
  4. import eVVM.apk.ui.bean.CategoryTimesBean;
  5. /**
  6. * Created by Android Studio.
  7. * User: zbb
  8. * Date: 2019/6/1
  9. * Describe: LoginContract
  10. */
  11. public class CategoryTimesContract {
  12. public interface View extends IMvpView {
  13. void categoryTimesListError(String msg);
  14. void categoryTimesListSuccess(List<CategoryTimesBean.DataBean> data);
  15. }
  16. public interface Presenter {
  17. void categoryTimesList();
  18. }
  19. }