| 1234567891011121314151617181920212223242526 |
- 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<GjShijiShouchu> getList(GjShijiShouchuFilterVo filterVo);
- Integer getCount(GjShijiShouchuFilterVo filterVo);
- void update(GjShijiShouchu gjShijiShouchu);
- void batchDelete(@Param("gids") List<Integer> gids);
- List<GjShijiShouchu> getByGeomIntersects(@Param("ewkt") String ewkt);
- }
|