修复批量设置子码流类型

This commit is contained in:
648540858
2024-12-11 11:43:41 +08:00
parent 79627201f5
commit 69a32f4519
2 changed files with 9 additions and 1 deletions

View File

@@ -413,6 +413,10 @@ public interface DeviceChannelMapper {
"</script>")
void updateChannelStreamIdentification(DeviceChannel channel);
@Update("<script>" +
"UPDATE wvp_device_channel SET stream_identification=#{streamIdentification}" +
"</script>")
void updateAllChannelStreamIdentification(@Param("streamIdentification") String streamIdentification);
@Update({"<script>" +
"<foreach collection='channelList' item='item' separator=';'>" +