| | |
| | | import com.dsh.other.mapper.StoreMapper; |
| | | import com.dsh.other.model.BaseVo; |
| | | import com.dsh.other.model.ProvinceAndCityVo; |
| | | import com.dsh.other.model.dto.siteDto.StoreInfoDto; |
| | | import com.dsh.other.service.StoreService; |
| | | import com.dsh.other.util.GDMapGeocodingUtil; |
| | | import com.dsh.other.util.ToolUtil; |
| | |
| | | @Override |
| | | public OperatorUser queryByStoreId(Integer id) { |
| | | return this.baseMapper.queryByStoreId(id); |
| | | } |
| | | |
| | | @Override |
| | | public StoreInfoDto getStoreInfo(Integer id) { |
| | | return this.baseMapper.getStoreInfo(id); |
| | | } |
| | | |
| | | |
| | |
| | | * @throws Exception |
| | | */ |
| | | @Override |
| | | public List<BaseVo> queryStoreByCityCode(String cityCode) throws Exception { |
| | | return this.baseMapper.queryStoreByCityCode(cityCode); |
| | | public List<BaseVo> queryStoreByCityCode(String provinceCode,String cityCode) throws Exception { |
| | | return this.baseMapper.queryStoreByCityCode(provinceCode,cityCode); |
| | | } |
| | | |
| | | |