| 12345678910111213141516171819202122 |
- package eVVM.apk.ui.login.city;
- import eVVM.apk.ui.bean.CityBean;
- import eVVM.apk.ui.bean.CompanyBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/7/2
- * Describe: CityOnListener
- */
- public interface CityOnListener {
- void getCityError(String msg);
- void getCitySuccess(CityBean data);
- void getCompanyError(String msg);
- void getCompanySuccess(CompanyBean data);
- }
|