Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / CounterCheckParam.cs
yxw on 9 Apr 2021 1 KB 添加单位换算
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;
        private string freThreshold2;
        private string freEleAddValue;

        private string cycThreshold1;
        private string cycThreshold2;
        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; }
    }
}