Shuxia Ning
2024-09-10 049f546f25cabfb5b08e29c54f49d61a544b0395
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace IStation.Settings
{
    /// <summary>
    /// 
    /// </summary>
    public class Paras_ZyDocking
    {
        /// <summary>
        /// 获取 实时Scada数据 Http地址
        /// </summary>
        public string RealTimeScadaHttpUrl { get; set; }
 
        /// <summary>
        /// 获取 历史Scada数据 Http地址
        /// </summary>
        public string HistoryScadaHttpUrl { get; set; } 
 
        /// <summary>
        /// 是否启用
        /// </summary>
        public bool Enable { get; set; }
    }
}