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 eCompareType
{
///
/// 等于
///
Equal = 0,
///
/// 小于
///
LessThen = 1,
///
/// 小于等于
///
LessOrEqual = 2,
///
/// 大于
///
GreatThen = 3,
///
/// 大于等于
///
GreatOrEqual = 4,
}
}