using System; using System.Collections.Concurrent; using WebApi.Models; namespace WebApi.Helpers { /// /// 全局变量类 /// public class Gl { /// /// SQL Server连接状态 /// public static bool OnLine_Sql { get; set; } = false; /// /// AGV连接状态 /// public static bool OnLine_AGV { get; set; } = false; /// /// MQTT连接状态 /// public static bool OnLine_MQTT { get; set; } = false; public static ConcurrentDictionary TightenList { get; set; } = new ConcurrentDictionary(); } }