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