[集群-自动切换过国标级联] 修复BUG

This commit is contained in:
648540858
2025-01-02 17:26:50 +08:00
parent ea2ef923ac
commit 0566bf916f
4 changed files with 6 additions and 4 deletions

View File

@@ -95,6 +95,6 @@ public interface PlatformMapper {
@Select("SELECT server_id FROM wvp_platform WHERE enable=true and server_id != #{serverId} group by server_id")
List<String> queryServerIdsWithEnableAndNotInServer(@Param("serverId") String serverId);
@Select("SELECT * FROM wvp_platform WHERE server_id == #{serverId}")
@Select("SELECT * FROM wvp_platform WHERE server_id = #{serverId}")
List<Platform> queryByServerId(@Param("serverId") String serverId);
}