using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 转换类型 /// public enum eConvertType { /// /// 系数转换 /// Ratio = 1, /// /// 映射转换 /// Mapping = 2, } }