package org.jeecg.modules.demo.hzz.axgh.axlh.service.impl; import org.jeecg.modules.demo.hzz.axgh.axlh.entity.RmAxlh; import org.jeecg.modules.demo.hzz.axgh.axlh.mapper.RmAxlhMapper; import org.jeecg.modules.demo.hzz.axgh.axlh.service.IRmAxlhService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; /** * @Description: rm_axlh * @Author: jeecg-boot * @Date: 2022-01-19 * @Version: V1.0 */ @Service public class RmAxlhServiceImpl extends ServiceImpl implements IRmAxlhService { @Autowired private RmAxlhMapper rmAxlhMapper; @Override public void updAxlh(String wkt, String id) { rmAxlhMapper.updAxlh(wkt,id); } @Override public void updAxlh2(String wkt, String id) { rmAxlhMapper.updAxlh2(wkt,id); } @Override public void updAxlh3(String wkt, String id) { rmAxlhMapper.updAxlh3(wkt,id); } @Override public void updGeoinfo(String id) { rmAxlhMapper.updGeoinfo(id); } }