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 eMatrixType { /// /// 系数换算 /// Ratio = 1, /// /// 映射换算 /// Mapping = 2, } }