| 12345678910111213141516171819202122232425262728 | package org.jeecg.modules.demo.hzz.axgh.axghgnq.service.impl;import org.jeecg.modules.demo.hzz.axgh.axghgnq.entity.Wykzx;import org.jeecg.modules.demo.hzz.axgh.axghgnq.mapper.RmAxghgnqgeoMapper;import org.jeecg.modules.demo.hzz.axgh.axghgnq.mapper.WykzxMapper;import org.jeecg.modules.demo.hzz.axgh.axghgnq.service.IWykzxService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;/** * @Description: wykzx * @Author: jeecg-boot * @Date:   2021-10-23 * @Version: V1.0 */@Servicepublic class WykzxServiceImpl extends ServiceImpl<WykzxMapper, Wykzx> implements IWykzxService {    @Autowired    private WykzxMapper wykzxMapper;    @Override    public String getGeojson(String id) {        String geoJson = wykzxMapper.getGeojson(id);        return geoJson;    }}
 |