| 1234567891011121314151617181920212223242526272829303132333435363738394041 | 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 */@Servicepublic class RmAxlhServiceImpl extends ServiceImpl<RmAxlhMapper, RmAxlh> implements IRmAxlhService {@Autowiredprivate 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);    }}
 |