1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.terra.coal.mapper;
|
| import com.terra.coal.entity.CountEntity;
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| import java.util.List;
|
| /**
| * MainMapper
| * @author WWW
| */
| @Mapper
| @Repository
| public interface MainMapper {
| /**
| * 根据范围统计
| *
| * @param wkt
| * @param top
| * @param bottom
| * @return
| */
| public List<CountEntity> countByRange(String wkt, double top, double bottom);
| }
|
|