|
|
@ -27,7 +27,7 @@ public interface MetaAlarmInfoMapper extends BaseMapper<MetaAlarmInfo> {
|
|
|
|
public List<MetaAlarmInfoVo> selectTop3AlarmInfo();
|
|
|
|
public List<MetaAlarmInfoVo> selectTop3AlarmInfo();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Select(" select a.id, " +
|
|
|
|
@Select("SELECT a.id, " +
|
|
|
|
"a.alarm_code jjxx_alarm_code, " +
|
|
|
|
"a.alarm_code jjxx_alarm_code, " +
|
|
|
|
"a.police_receiver_name jjxx_police_receiver_name, " +
|
|
|
|
"a.police_receiver_name jjxx_police_receiver_name, " +
|
|
|
|
"a.alarm_response_unit jjxx_alarm_response_unit, " +
|
|
|
|
"a.alarm_response_unit jjxx_alarm_response_unit, " +
|
|
|
@ -39,9 +39,24 @@ public interface MetaAlarmInfoMapper extends BaseMapper<MetaAlarmInfo> {
|
|
|
|
"a.informant_time jjxx_informant_time, " +
|
|
|
|
"a.informant_time jjxx_informant_time, " +
|
|
|
|
"a.alarm_address jjxx_alarm_address, " +
|
|
|
|
"a.alarm_address jjxx_alarm_address, " +
|
|
|
|
"a.longitude jjxx_longitude, " +
|
|
|
|
"a.longitude jjxx_longitude, " +
|
|
|
|
"a.latitude jjxx_latitude from ( " +
|
|
|
|
"a.latitude jjxx_latitude " +
|
|
|
|
"select * from meta_alarm_info order by informant_time desc limit 100 " +
|
|
|
|
"FROM (SELECT * FROM meta_alarm_info WHERE " +
|
|
|
|
") a " )
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临海派出所' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临海派出所第一警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临海派出所第二警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临海派出所第三警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临海派出所第四警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临港派出所' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临港派出所社区警务责任区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临港派出所第一警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临港派出所第二警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局临港派出所第一警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局扁担港边防派出所' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局扁担港边防派出所第一警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局黄沙河边防派出所' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局黄沙河边防派出所第一警务区' OR " +
|
|
|
|
|
|
|
|
"alarm_response_unit LIKE '射阳县公安局黄沙河边防派出所第三警务区' " +
|
|
|
|
|
|
|
|
"ORDER BY informant_time DESC LIMIT 100) a")
|
|
|
|
public List<MetaAlarmInfoAndHandleAlarmVo> listAlarmAndHandleAlarm();
|
|
|
|
public List<MetaAlarmInfoAndHandleAlarmVo> listAlarmAndHandleAlarm();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|