修复列表管理网卡信息不显示问题。

修复多网卡图形监控异常问题。
This commit is contained in:
gaoyutao
2025-12-18 15:28:25 +08:00
parent 343028ade5
commit 92cf598941
7 changed files with 28 additions and 17 deletions
@@ -65,5 +65,7 @@ public class RmNetworkInterface extends BaseEntity
private Integer newFlag;
/** 服务器clientId集合 */
private String clientIds;
/** 查询所有网卡的clientId集合 */
private String allClientIds;
}
@@ -51,6 +51,12 @@
#{clientId}
</foreach>
</if>
<if test="allClientIds != '' and allClientIds != null">
and client_id in
<foreach collection="allClientIds.split(',')" item="clientId" open="(" separator="," close=")">
#{clientId}
</foreach>
</if>
</where>
</select>