package com.siwei.apply.mapper; import com.siwei.apply.domain.GjShijiShouchu; import com.siwei.apply.domain.vo.GjShijiShouchuFilterVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface GjShijiShouchuMapper { void add(GjShijiShouchu gjShijiShouchu); GjShijiShouchu get(@Param("gid") Integer gid); List getList(GjShijiShouchuFilterVo filterVo); Integer getCount(GjShijiShouchuFilterVo filterVo); void update(GjShijiShouchu gjShijiShouchu); void batchDelete(@Param("gids") List gids); List getByGeomIntersects(@Param("ewkt") String ewkt); }