IScanWarningService.cs 630 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;

namespace FLY.Thick.Blowing.IService
{
    public interface IScanWarningService:INotifyPropertyChanged
    {
        /// <summary>
        /// 使能
        /// </summary>
        bool Enable { get; set; }
15 16 17 18 19 20

        /// <summary>
        /// 自动目标值
        /// </summary>
        bool IsAutoTarget { get; set; }

21 22 23 24 25 26 27 28
        /// <summary>
        /// 连续N个点,大于规格线(公差)才算报警
        /// </summary>
        int AlarmCnt_Tolerance { get; set; }

        void Apply();
    }
}