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