霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-10 dd50418315218979f8d596f34f185ae4a28adc4a
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);
}