6bd48e844681014bbb09db7c2d83b674fb10a67e.svn-base 606 B

12345678910111213141516171819202122232425262728293031
  1. package eVVM.apk.ui.login.city;
  2. import eVVM.apk.mvp.IMvpView;
  3. import eVVM.apk.ui.bean.CityBean;
  4. import eVVM.apk.ui.bean.CompanyBean;
  5. /**
  6. * Created by Android Studio.
  7. * User: zbb
  8. * Date: 2019/7/2
  9. * Describe: CityContract
  10. */
  11. public class CityContract {
  12. public interface View extends IMvpView {
  13. void getCityError(String msg);
  14. void getCitySuccess(CityBean data);
  15. void getCompanyError(String msg);
  16. void getCompanySuccess(CompanyBean data);
  17. }
  18. public interface Presenter {
  19. void getCity(int parentId);
  20. void getCompany(int areaId);
  21. }
  22. }