swygncjc/src/main/java/com/xkrs/microservice/dao/GridEntityDao.java

53 lines
2.2 KiB
Java

package com.xkrs.microservice.dao;
import com.xkrs.microservice.model.entity.ecology.remote.GridEntity;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Query;
import java.util.List;
public interface GridEntityDao extends JpaRepository<GridEntity, Integer>, JpaSpecificationExecutor<GridEntity> {
@Query(value = "select distinct upper(satellite_sensor) from grid", nativeQuery = true)
List<String> getSensor();
/**
* 获取上传遥感数据的年份
* @return
*/
@Query(value = "SELECT DISTINCT year from grid", nativeQuery = true)
List<String> getYear();
/**
* 根据市行政区县代码获取id
* @param cityCode
* @return
*/
@Query(value = "select id from (select * from grid where center_point_latitude is not null and center_point_latitude <> '' " +
"and center_point_longtitude is not null and center_point_longtitude <> '') as xz where st_intersects((" +
"select geom from shp_city where code = ?1) " +
",st_setsrid(st_geometryfromtext(concat('point(', xz.center_point_longtitude, ' ', xz.center_point_latitude,')')),4326))", nativeQuery = true)
List<Integer> getByCityCode(int cityCode);
/**
* 根据区县行政区划获取id
* @param code
* @return
*/
@Query(value = "select id from (select * from grid where center_point_latitude is not null and center_point_latitude <> '' and" +
" center_point_longtitude is not null and center_point_longtitude <> '') as xz where st_intersects((" +
"select geom from shp_county where code = ?1) " +
",st_setsrid(st_geometryfromtext(concat('point(', xz.center_point_longtitude, ' ', xz.center_point_latitude,')')),4326))", nativeQuery = true)
List<Integer> getByCountyCode(int code);
/**
* 根据传感器获取id
* @param satelliteList
* @return
*/
@Query(value = "select id from grid where upper(satellite_sensor) in ?1 and img_path is not null", nativeQuery = true)
List<Integer> getBySatelliteSensor(List<String> satelliteList);
}