Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / DetectionItem.cs
yangqianqian on 7 Apr 2021 2 KB homepage complete

using System;

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

        //设备ID
        private int deviceId;

        //开始时间
        private DateTime startTime;

        //结束时间
        private DateTime endTime;

        //频率稳定度
        private string stability;

        //频率准确度
        private string accuracy;

        //开机特性
        private string bootFeature;

        //日老化率
        private string ageRate;

        //频率稳定度
        private String interval;

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public int DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public DateTime StartTime
        {
            get
            {
                return startTime;
            }

            set
            {
                startTime = value;
            }
        }

        public DateTime 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;
            }
        }

    }
}