nickchange
2023-10-10 ee9cb0da4a43bcf523ebb157678f64a2895fba1a
cloud-server-other/src/main/java/com/dsh/other/service/impl/StoreServiceImpl.java
@@ -6,6 +6,7 @@
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.service.StoreService;
import com.dsh.other.util.GDMapGeocodingUtil;
import com.dsh.other.util.ToolUtil;
@@ -29,7 +30,29 @@
public class StoreServiceImpl extends ServiceImpl<StoreMapper,Store> implements StoreService {
    @Autowired
    private StoreMapper storeMapper;
    @Autowired
    private GDMapGeocodingUtil gdMapGeocodingUtil;
    /**
     * 根据城市管理员id获取门店集合
     * @param id
     * @return
     */
    @Override
    public List<Store> getStoreByCityManagerId(Integer id) {
        return storeMapper.getStoreByCityManagerId(id);
    }
    /**
     * 根据门店员工id获取门店集合
     * @param id
     * @return
     */
    @Override
    public List<Store> getStoreByStoreStaffId(Integer id) {
        return storeMapper.getStoreByStoreStaffId(id);
    }
    /**
@@ -62,8 +85,11 @@
     */
    @Override
    public List<BaseVo> queryStoreLists(String lon, String lat) throws Exception {
        Map<String, String> geocode = gdMapGeocodingUtil.geocode(lon, lat);
        List<BaseVo> list = new ArrayList<>();
        if(ToolUtil.isEmpty(lon) || ToolUtil.isEmpty(lat)){
            return list;
        }
        Map<String, String> geocode = gdMapGeocodingUtil.geocode(lon, lat);
        if(null != geocode){
            String provinceCode = geocode.get("provinceCode");
            String cityCode = geocode.get("cityCode");
@@ -76,4 +102,47 @@
        }
        return list;
    }
    /**
     * 获取开通省市
     * @param pcode
     * @return
     * @throws Exception
     */
    @Override
    public List<ProvinceAndCityVo> queryProvinceAndCity(String pcode) throws Exception {
        if(ToolUtil.isEmpty(pcode)){
            return this.baseMapper.queryProvince();
        }
        if(ToolUtil.isNotEmpty(pcode)){
            return this.baseMapper.queryCity(pcode);
        }
        return null;
    }
    /**
     * 获取所有开通城市
     * @return
     * @throws Exception
     */
    @Override
    public List<ProvinceAndCityVo> queryAllCity() throws Exception {
        return this.baseMapper.queryCity(null);
    }
    /**
     * 根据城市code获取城市列表
     * @param cityCode
     * @return
     * @throws Exception
     */
    @Override
    public List<BaseVo> queryStoreByCityCode(String cityCode) throws Exception {
        return this.baseMapper.queryStoreByCityCode(cityCode);
    }
}