using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 系数转换类型 /// public enum eRatioConvertType { /// /// 单位 /// Unit = 0, /// /// 一元 /// Once = 1, /// /// 二元 /// Twice = 2, } }