123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package org.jeecg.modules.demo.hzz.shjsgc.lhgc.ql.geo.service.impl;
- import org.jeecg.modules.demo.hzz.shjsgc.lhgc.ql.geo.entity.RmQlgeo;
- import org.jeecg.modules.demo.hzz.shjsgc.lhgc.ql.geo.mapper.RmQlgeoMapper;
- import org.jeecg.modules.demo.hzz.shjsgc.lhgc.ql.geo.service.IRmQlgeoService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- /**
- * @Description: rm_qlgeo
- * @Author: jeecg-boot
- * @Date: 2022-02-11
- * @Version: V1.0
- */
- @Service
- public class RmQlgeoServiceImpl extends ServiceImpl<RmQlgeoMapper, RmQlgeo> implements IRmQlgeoService {
- @Autowired
- RmQlgeoMapper rmQlgeoMapper;
- @Override
- public void addqlgc(String geom, String id) {
- rmQlgeoMapper.addqlgc(geom, id);
- }
- @Override
- public void addqlgc2(String geom, String id) {
- rmQlgeoMapper.addqlgc2(geom, id);
- }
- @Override
- public void addqlgc3(String geom, String id) {
- rmQlgeoMapper.addqlgc3(geom, id);
- }
- @Override
- public void updqlgc(String geom, String id) {
- rmQlgeoMapper.updqlgc(geom, id);
- }
- @Override
- public void updqlgc2(String geom, String id) {
- rmQlgeoMapper.updqlgc2(geom, id);
- }
- @Override
- public void updqlgc3(String geom, String id) {
- rmQlgeoMapper.updqlgc3(geom, id);
- }
- @Override
- public String getGeojson(String relid) {
- return rmQlgeoMapper.getGeojson(relid);
- }
- @Override
- public void delqlgc(String id) {
- rmQlgeoMapper.delqlgc(id);
- }
- }
|