1
0

GjShijiShouchuMapper.java 704 B

1234567891011121314151617181920212223242526
  1. package com.siwei.apply.mapper;
  2. import com.siwei.apply.domain.GjShijiShouchu;
  3. import com.siwei.apply.domain.vo.GjShijiShouchuFilterVo;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. @Mapper
  8. public interface GjShijiShouchuMapper {
  9. void add(GjShijiShouchu gjShijiShouchu);
  10. GjShijiShouchu get(@Param("gid") Integer gid);
  11. List<GjShijiShouchu> getList(GjShijiShouchuFilterVo filterVo);
  12. Integer getCount(GjShijiShouchuFilterVo filterVo);
  13. void update(GjShijiShouchu gjShijiShouchu);
  14. void batchDelete(@Param("gids") List<Integer> gids);
  15. List<GjShijiShouchu> getByGeomIntersects(@Param("ewkt") String ewkt);
  16. }