2021-07-13 10:18:08 +08:00
package com.xkrs.dao ;
import com.xkrs.model.entity.FirePointEntity ;
import org.springframework.data.jpa.repository.JpaRepository ;
2021-07-16 08:52:20 +08:00
import org.springframework.data.jpa.repository.JpaSpecificationExecutor ;
2021-07-16 09:52:25 +08:00
import org.springframework.data.jpa.repository.Modifying ;
2021-07-15 15:22:23 +08:00
import org.springframework.data.jpa.repository.Query ;
2021-07-13 10:18:08 +08:00
import org.springframework.stereotype.Component ;
2021-07-15 15:22:23 +08:00
import java.util.List ;
2021-07-20 15:07:37 +08:00
import java.util.Map ;
2021-07-15 15:22:23 +08:00
2021-07-13 10:18:08 +08:00
/ * *
* @author XinYi Song
* /
@Component
2021-07-16 08:52:20 +08:00
public interface FirePointDao extends JpaRepository < FirePointEntity , Long > , JpaSpecificationExecutor < FirePointEntity > {
2021-07-15 15:22:23 +08:00
/ * *
* 查询今天的火点信息
* @param addTime
2021-08-05 15:53:42 +08:00
* @param address
2021-07-15 15:22:23 +08:00
* @return
* /
2021-08-05 15:53:42 +08:00
@Query ( value = " select * from fire_point where add_time like CONCAT('%',:addTime,'%') and fire_point_address like CONCAT('%',:address,'%') " , nativeQuery = true )
List < FirePointEntity > selectTodayFirePoint ( String addTime , String address ) ;
2021-08-02 14:56:25 +08:00
/ * *
* 区县条件查询今天火点信息
* @param addTime
* @param countyCode
* @return
* /
@Query ( value = " select * from fire_point where add_time like CONCAT('%',:addTime,'%') and county_code = :countyCode " , nativeQuery = true )
List < FirePointEntity > selectTodayFirePointOne ( String addTime , String countyCode ) ;
2021-07-16 08:52:20 +08:00
/ * *
* 根据火点编码查询火点信息
* @param fireCode
* @return
* /
FirePointEntity findByFireCode ( String fireCode ) ;
2021-07-16 09:52:25 +08:00
/ * *
* 根据火点编码修改火点状态
* @param fireCode
* @param fireType
* /
@Modifying ( clearAutomatically = true )
@Query ( value = " update fire_point set fire_type = ?2 where fire_code = ?1 " , nativeQuery = true )
void updateFireTypeByFireCode ( String fireCode , String fireType ) ;
2021-07-20 15:07:37 +08:00
/ * *
* 查询时间段内各植被类型的火点数量
* @param startTime
* @param endTime
* @return
* /
@Query ( value = " select la.land_name landname,count(fp.id) as num from land la left join fire_point fp " +
" on fp.land_type = la.land_name AND fp.add_time BETWEEN ?1 AND ?2 " +
" group by la.land_name " , nativeQuery = true )
List < Map < String , Object > > selectNumByLandType ( String startTime , String endTime ) ;
/ * *
* 查询时间段内各地区的火点数量
* @param startTime
* @param endTime
* @return
* /
@Query ( value = " select ci.city_name cityname,count(fp.id) from city ci left join fire_point fp " +
" on fp.county_code like concat('%',ci.city_code,'%') AND fp.add_time BETWEEN ?1 AND ?2 " +
" group by ci.city_name " , nativeQuery = true )
List < Map < String , Object > > selectNumByArea ( String startTime , String endTime ) ;
2021-10-11 16:28:03 +08:00
/ * *
* 查询水体类型的id
* @return
* /
@Query ( value = " select id from fire_point where land_type = '水体' " , nativeQuery = true )
List < Integer > selectId ( ) ;
/ * *
* 批量删除水体
* @param id
* /
@Modifying ( clearAutomatically = true )
void deleteByIdIn ( List < Integer > id ) ;
2021-07-13 10:18:08 +08:00
}