| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.other.entity.OperatorUser; |
| | | import com.dsh.other.entity.Store; |
| | | 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 List<Map<String, Object>> game(Integer appUserId) { |
| | | return this.baseMapper.game(appUserId); |
| | | } |
| | | |
| | | @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); |
| | | } |
| | | |
| | | |