using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Monitor
{
///
/// 映射转换接口
///
public interface IMappingConvert : IConvert
{
///
/// 是否满足条件
///
bool Meet(double value);
}
}