using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 来源类型 /// public enum eSourceType { /// /// 对接 /// Docking = 0, /// /// 分析 /// Analyse = 1, /// /// 录入 /// Input = 2, /// /// 虚拟 /// Virtual = 3 } }