修复单个添加的推流级联国标的问题

This commit is contained in:
648540858
2022-08-05 09:48:13 +08:00
parent d09d8f11f0
commit 142efdd915
8 changed files with 17 additions and 8 deletions

View File

@@ -143,4 +143,9 @@ public interface GbStreamMapper {
"</foreach>" +
"</script>")
List<GbStream> selectAllForAppAndStream(List<StreamPushItem> streamPushItems);
@Update("UPDATE gb_stream " +
"SET mediaServerId=#{mediaServerId}" +
"WHERE app=#{app} AND stream=#{stream}")
void updateMediaServer(String app, String stream, String mediaServerId);
}