package com.fzzy.igds.iot.server; /** * @Description 工具类 * @Author CZT * @Date 2025/11/11 18:07 */ public class ServerUtils { /** * 生成TCP连接的KEY * * @param ip * @param port * @return */ public static String getServerKey(String ip, Integer port) { return ip + ":" + port; } }