using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HybirdFrameworkServices.Init.Entity { /// ///PLC连接状态枚举 /// public enum ConnectState { NOCONNECT = 0, CONNECTING = 1, CONNECTED = 2 } }