[推流设备] 修复推流中重启服务导致无法继续播放

This commit is contained in:
648540858
2024-12-27 10:42:40 +08:00
parent 3ea236efdd
commit 460f73555e
3 changed files with 66 additions and 65 deletions

View File

@@ -48,9 +48,9 @@ public interface StreamPushMapper {
" from " +
" wvp_stream_push st " +
" LEFT join wvp_device_channel wdc " +
" on st.id = wdc.data_device_id " +
" on wdc.data_type = 2 and st.id = wdc.data_device_id " +
" WHERE " +
" wdc.data_type = 2 " +
" 1=1 " +
" <if test='query != null'> AND (st.app LIKE concat('%',#{query},'%') escape '/' OR st.stream LIKE concat('%',#{query},'%') escape '/' " +
" OR wdc.gb_device_id LIKE concat('%',#{query},'%') escape '/' OR wdc.gb_name LIKE concat('%',#{query},'%') escape '/')</if> " +
" <if test='pushing == true' > AND st.pushing=1</if>" +