using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model { public class CounterCheckParam { private long id; private string soOutDelay;//电压延时 private string soEleFrequency;//电压初始值 private string soEleAddValue;//电压增加值 private string soEleAlarm;//电压报警值 private string freThreshold1;//频率误差上限》80 private string freThreshold2;//频率误差上线《80 private string freEleAddValue; private string cycThreshold1;//周期误差上限》80 private string cycThreshold2;//周期误差上限《80 private string cycEleAddValue; public long Id { get { return id; } set { id = value; } } public string SoOutDelay { get => soOutDelay; set => soOutDelay = value; } public string SoEleFrequency { get => soEleFrequency; set => soEleFrequency = value; } public string SoEleAddValue { get => soEleAddValue; set => soEleAddValue = value; } public string SoEleAlarm { get => soEleAlarm; set => soEleAlarm = value; } public string FreThreshold1 { get => freThreshold1; set => freThreshold1 = value; } public string FreThreshold2 { get => freThreshold2; set => freThreshold2 = value; } public string FreEleAddValue { get => freEleAddValue; set => freEleAddValue = value; } public string CycThreshold1 { get => cycThreshold1; set => cycThreshold1 = value; } public string CycThreshold2 { get => cycThreshold2; set => cycThreshold2 = value; } public string CycEleAddValue { get => cycEleAddValue; set => cycEleAddValue = value; } } }