using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace S71500.Enum { public enum CommType { RJ45 = 1, //网口 RS232 = 2, //com口 RS485 = 3, //485接口 } }