using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 数据类型 /// public enum eDataType { /// /// 瞬时 /// Instant = 1, /// /// 累积 /// Accumulate = 2 } }