| 12345678910111213141516171819202122232425262728293031 |
- package eVVM.apk.ui.login.city;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.CityBean;
- import eVVM.apk.ui.bean.CompanyBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/7/2
- * Describe: CityContract
- */
- public class CityContract {
- public interface View extends IMvpView {
- void getCityError(String msg);
- void getCitySuccess(CityBean data);
- void getCompanyError(String msg);
- void getCompanySuccess(CompanyBean data);
- }
- public interface Presenter {
- void getCity(int parentId);
- void getCompany(int areaId);
- }
- }
|