IHuoLaLaCityService.java 639 B

123456789101112131415161718192021222324252627
  1. package com.ydd.module.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydd.module.domain.HuoLaLaCity;
  4. import com.ydd.third.common.vo.huolalavo.HCityInfo;
  5. import com.ydd.third.common.vo.huolalavo.HPoiSearch;
  6. import com.ydd.third.common.vo.huolalavo.Haddress;
  7. import java.util.List;
  8. /**
  9. * @author xsx
  10. * @version 1.0
  11. * @date 2021/6/10 17:19
  12. */
  13. public interface IHuoLaLaCityService extends IService<HuoLaLaCity> {
  14. void getCityList();
  15. HCityInfo getCityInfo(String cityId);
  16. HuoLaLaCity findCity(String cityCode);
  17. void getCitys();
  18. List<Haddress> poiSearch(HPoiSearch hPoiSearch);
  19. }