namespace YunDa.Server.ISMSTcp.Configuration { /// /// ISMS服务器连接配置 /// public class ISMSServerConfiguration { /// /// 服务器IP地址 /// public string ServerIP { get; set; } = "192.168.65.33"; /// /// 服务器端口 /// public int ServerPort { get; set; } = 43916; /// /// 重连延迟时间(秒) /// public int ReconnectDelaySeconds { get; set; } = 5; /// /// 最大重试次数 /// public int MaxRetries { get; set; } = 3; /// /// 不完整数据超时时间(秒) /// public int IncompleteDataTimeoutSeconds { get; set; } = 5; /// /// 缓冲区大小 /// public int BufferSize { get; set; } = 1024; } /// /// Web API配置 /// public class WebApiConfiguration { /// /// Web API端口 /// public int Port { get; set; } = 38094; /// /// 报警数据上传端点 /// public string AlarmEndpoint { get; set; } = "http://localhost:38090/api/services/SOMS/AlarmLiveData/UploadISMSAlarmMsg"; } }