| 1234567891011121314151617181920212223242526 |
- package eVVM.apk.ui.vaccination.categoryTimes;
- import java.util.List;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.CategoryTimesBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/1
- * Describe: LoginContract
- */
- public class CategoryTimesContract {
- public interface View extends IMvpView {
- void categoryTimesListError(String msg);
- void categoryTimesListSuccess(List<CategoryTimesBean.DataBean> data);
- }
- public interface Presenter {
- void categoryTimesList();
- }
- }
|