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, JpaSpecificationExecutor { @Query(value = "select distinct upper(satellite_sensor) from grid", nativeQuery = true) List getSensor(); /** * 获取上传遥感数据的年份 * @return */ @Query(value = "SELECT DISTINCT year from grid", nativeQuery = true) List 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 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 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 getBySatelliteSensor(List satelliteList); }