12345678910111213141516171819 |
- package org.jeecg.modules.demo.hzz.yhyc.geo.mapper;
- import java.util.List;
- //import org.apache.ibatis.annotations.Param;
- import org.jeecg.modules.demo.hzz.yhyc.geo.entity.RmWtqdgeo;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- /**
- * @Description: rm_wtqdgeo
- * @Author: jeecg-boot
- * @Date: 2021-11-24
- * @Version: V1.0
- */
- public interface RmWtqdgeoMapper extends BaseMapper<RmWtqdgeo> {
- void addWtqd(String geom,String id);
- void addWtqd2(String geom,String id);
- void delWtqd(String id);
- }
|