Merge pull request #1289 from oulover/fix_wvp-28181-2.0_gbStreamId

Fix 推流列表-> 添加通道 报错: 错误: 字段 "gbStreamId" 不存在 ,改为:gb_stream_id 自测试通过
pull/1336/head
648540858 2024-01-30 14:11:09 +08:00 committed by GitHub
commit f146203fd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public interface GbStreamMapper {
"(#{app}, #{stream}, #{gbId}, #{name}, " + "(#{app}, #{stream}, #{gbId}, #{name}, " +
"#{longitude}, #{latitude}, #{streamType}, " + "#{longitude}, #{latitude}, #{streamType}, " +
"#{mediaServerId}, #{createTime})") "#{mediaServerId}, #{createTime})")
@Options(useGeneratedKeys = true, keyProperty = "gbStreamId", keyColumn = "gbStreamId") @Options(useGeneratedKeys = true, keyProperty = "gbStreamId", keyColumn = "gb_stream_id")
int add(GbStream gbStream); int add(GbStream gbStream);
@Update("UPDATE wvp_gb_stream " + @Update("UPDATE wvp_gb_stream " +