CRVM-redis-6/Entity/EntityAlarm.cs
2025-11-07 02:02:31 +08:00

22 lines
822 B
C#

using System;
namespace CRVM.Entity
{
[Serializable]
public class EntityAlarmSpeed
{
public int alarmSpeed { set; get; }
public int lowPassL { set; get; } //低频滤波下限
public int lowPassU { set; get; } //低频滤波上限
public float lowAlarmValue { set; get; } //低频报警值
public float lowDefectValue { set; get; } //低频缺陷报警值
public int midPassL { set; get; }
public int midPassU { set; get; }
public float midAlarmValue { set; get; }
public float midDefectValue { set; get; }
public int highPassL { set; get; }
public int highPassU { set; get; }
public float highAlarmValue { set; get; }
public float highDefectValue { set; get; }
}
}