Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / DetectionItem.cs
yangqianqian on 24 May 2021 3 KB s

using System;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model
{
    public class DetectionItem
    {
        private long id;

        //设备ID
        private long deviceId;

        //开始时间
        private string startTime;

        //结束时间
        private string endTime;

        //频率稳定度
        private string stability;

        //频率准确度
        private string accuracy;

        //开机特性
        private string bootFeature;

        //日老化率
        private string ageRate;

        //频率稳定度
        private String interval;

        private string counterDetec;

        private string channel;
        private string stability1;
        private string stability10;
        private string stability20;
        private string stability100;
        private string isDetecting;
        public long Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public long DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public string StartTime
        {
            get
            {
                return startTime;
            }

            set
            {
                startTime = value;
            }
        }

        public string EndTime
        {
            get
            {
                return endTime;
            }

            set
            {
                endTime = value;
            }
        }

        public string Stability
        {
            get
            {
                return stability;
            }

            set
            {
                stability = value;
            }
        }

        public string Accuracy
        {
            get
            {
                return accuracy;
            }

            set
            {
                accuracy = value;
            }
        }

        public string BootFeature
        {
            get
            {
                return bootFeature;
            }

            set
            {
                bootFeature = value;
            }
        }

        public string AgeRate
        {
            get
            {
                return ageRate;
            }

            set
            {
                ageRate = value;
            }
        }

        public string Interval
        {
            get
            {
                return interval;
            }

            set
            {
                interval = value;
            }
        }

        public string CounterDetec { get => counterDetec; set => counterDetec = value; }
        public string Channel { get => channel; set => channel = value; }
        public string Stability10 { get => stability10; set => stability10 = value; }
        public string Stability20 { get => stability20; set => stability20 = value; }
        public string Stability100 { get => stability100; set => stability100 = value; }
        public string Stability1 { get => stability1; set => stability1 = value; }
        public string IsDetecting { get => isDetecting; set => isDetecting = value; }
    }
}