From 3d68b56bb5ecbc3d34b2901c671dc7f1f0f82f74 Mon Sep 17 00:00:00 2001 From: pedoc <pedoc@qq.com> Date: 星期一, 29 一月 2024 18:05:17 +0800 Subject: [PATCH] 修复未配置sipdomain时出现异常 --- src/main/java/com/genersoft/iot/vmp/storager/dao/CloudRecordServiceMapper.java | 84 +++++++++++++++++++++++++++++++++++++----- 1 files changed, 74 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/storager/dao/CloudRecordServiceMapper.java b/src/main/java/com/genersoft/iot/vmp/storager/dao/CloudRecordServiceMapper.java index 10595ef..08f67ba 100644 --- a/src/main/java/com/genersoft/iot/vmp/storager/dao/CloudRecordServiceMapper.java +++ b/src/main/java/com/genersoft/iot/vmp/storager/dao/CloudRecordServiceMapper.java @@ -2,10 +2,7 @@ import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem; import com.genersoft.iot.vmp.service.bean.CloudRecordItem; -import org.apache.ibatis.annotations.Insert; -import org.apache.ibatis.annotations.Mapper; -import org.apache.ibatis.annotations.Param; -import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.*; import java.util.List; @@ -42,17 +39,84 @@ @Select(" <script>" + "select * " + - "from wvp_cloud_record " + - "where 0 = 0" + + " from wvp_cloud_record " + + " where 0 = 0" + + " <if test='query != null'> AND (app LIKE concat('%',#{query},'%') OR stream LIKE concat('%',#{query},'%') )</if> " + " <if test= 'app != null '> and app=#{app}</if>" + " <if test= 'stream != null '> and stream=#{stream}</if>" + - " <if test= 'startTimeStamp != null '> and start_time >= #{startTimeStamp}</if>" + - " <if test= 'endTimeStamp != null '> and end_time <= #{endTimeStamp}</if>" + + " <if test= 'startTimeStamp != null '> and end_time >= #{startTimeStamp}</if>" + + " <if test= 'endTimeStamp != null '> and start_time <= #{endTimeStamp}</if>" + + " <if test= 'callId != null '> and call_id = #{callId}</if>" + + " <if test= 'mediaServerItemList != null ' > and media_server_id in " + + " <foreach collection='mediaServerItemList' item='item' open='(' separator=',' close=')' > #{item.id}</foreach>" + + " </if>" + + " order by start_time DESC" + + + " </script>") + List<CloudRecordItem> getList(@Param("query") String query, @Param("app") String app, @Param("stream") String stream, + @Param("startTimeStamp")Long startTimeStamp, @Param("endTimeStamp")Long endTimeStamp, + @Param("callId")String callId, List<MediaServerItem> mediaServerItemList); + + + @Select(" <script>" + + "select file_path" + + " from wvp_cloud_record " + + " where 0 = 0" + + " <if test= 'app != null '> and app=#{app}</if>" + + " <if test= 'stream != null '> and stream=#{stream}</if>" + + " <if test= 'startTimeStamp != null '> and end_time >= #{startTimeStamp}</if>" + + " <if test= 'endTimeStamp != null '> and start_time <= #{endTimeStamp}</if>" + + " <if test= 'callId != null '> and call_id = #{callId}</if>" + " <if test= 'mediaServerItemList != null ' > and media_server_id in " + " <foreach collection='mediaServerItemList' item='item' open='(' separator=',' close=')' > #{item.id}</foreach>" + " </if>" + " </script>") - List<CloudRecordItem> getList(@Param("app") String app, @Param("stream") String stream, + List<String> queryRecordFilePathList(@Param("app") String app, @Param("stream") String stream, @Param("startTimeStamp")Long startTimeStamp, @Param("endTimeStamp")Long endTimeStamp, - List<MediaServerItem> mediaServerItemList); + @Param("callId")String callId, List<MediaServerItem> mediaServerItemList); + + @Update(" <script>" + + "update wvp_cloud_record set collect = #{collect} where file_path in " + + " <foreach collection='cloudRecordItemList' item='item' open='(' separator=',' close=')' > #{item.filePath}</foreach>" + + " </script>") + int updateCollectList(@Param("collect") boolean collect, List<CloudRecordItem> cloudRecordItemList); + + @Delete(" <script>" + + "delete from wvp_cloud_record where media_server_id=#{mediaServerId} and file_path in " + + " <foreach collection='filePathList' item='item' open='(' separator=',' close=')' > #{item}</foreach>" + + " </script>") + void deleteByFileList(List<String> filePathList, @Param("mediaServerId") String mediaServerId); + + + @Select(" <script>" + + "select *" + + " from wvp_cloud_record " + + " where collect = false and end_time <= #{endTimeStamp} and media_server_id = #{mediaServerId} " + + " </script>") + List<CloudRecordItem> queryRecordListForDelete(@Param("endTimeStamp")Long endTimeStamp, String mediaServerId); + + @Update(" <script>" + + "update wvp_cloud_record set collect = #{collect} where id = #{recordId} " + + " </script>") + int changeCollectById(@Param("collect") boolean collect, @Param("recordId") Integer recordId); + + @Delete(" <script>" + + "delete from wvp_cloud_record where id in " + + " <foreach collection='cloudRecordItemIdList' item='item' open='(' separator=',' close=')' > #{item.id}</foreach>" + + " </script>") + int deleteList(List<CloudRecordItem> cloudRecordItemIdList); + + @Select(" <script>" + + "select *" + + " from wvp_cloud_record " + + "where call_id = #{callId}" + + " </script>") + List<CloudRecordItem> getListByCallId(@Param("callId") String callId); + + @Select(" <script>" + + "select *" + + " from wvp_cloud_record " + + "where id = #{id}" + + " </script>") + CloudRecordItem queryOne(@Param("id") Integer id); } -- Gitblit v1.8.0