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 eMappingMatrixType
{
///
/// 单一映射
///
Single = 0,
///
/// 比较映射
///
Compare = 1,
///
/// 区间映射
///
Range = 2,
}
}