using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace FLY.Thick.Blowing.IService
{
public interface IScanWarningService:INotifyPropertyChanged
{
///
/// 使能
///
bool Enable { get; set; }
///
/// 自动目标值
///
bool IsAutoTarget { get; set; }
///
/// 连续N个点,大于规格线(公差)才算报警
///
int AlarmCnt_Tolerance { get; set; }
void Apply();
}
}