From ef839d119eec2c28fac5f5ba175d71f926afae44 Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期二, 20 五月 2025 11:49:22 +0800 Subject: [PATCH] 修复数据库表字段不匹配、读取重量错误处理等逻辑 --- AppStart/Config.cs | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/AppStart/Config.cs b/AppStart/Config.cs index ad0217f..cea2e11 100644 --- a/AppStart/Config.cs +++ b/AppStart/Config.cs @@ -21,6 +21,16 @@ public string TCPServerIP { get; set; } public int TCPServerPort { get; set; } public List<Area> Areas { get; set; } + public List<Snap> Snap { get; set; } + public string CaptureUrl { get; set; } } + public class Snap { + public string Ip { get; set; } + public int Port { get; set; } + public string Name { get; set; } + public string Pwd { get; set; } + } + + } -- Gitblit v1.9.1