修复平台查询sql错误

dev/数据库统合
648540858 2025-01-02 16:35:45 +08:00
parent 91b0ba4d5e
commit 157d0a1e71
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public interface PlatformMapper {
" </script>")
List<Platform> queryList(@Param("query") String query);
@Select("SELECT * FROM wvp_platform WHERE serverId=#{serverId} and enable=#{enable} ")
@Select("SELECT * FROM wvp_platform WHERE server_id=#{serverId} and enable=#{enable} ")
List<Platform> queryEnableParentPlatformList(@Param("serverId") String serverId, @Param("enable") boolean enable);
@Select("SELECT * FROM wvp_platform WHERE enable=true and as_message_channel=true")