Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / CounterData.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model
{
    class CounterData
    {
        private int id;
        private string deviceId;
        private string deviceModel;
        private string channl;
        private string outValue;
        private string checkValue;
        private string volTage;
        private DateTime checkTime; //1-频率测量,2-周期测量 

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public string DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public string DeviceModel
        {
            get
            {
                return deviceModel;
            }

            set
            {
                deviceModel = value;
            }
        }

        public string Channl
        {
            get
            {
                return channl;
            }

            set
            {
                channl = value;
            }
        }

        public string OutValue
        {
            get
            {
                return outValue;
            }

            set
            {
                outValue = value;
            }
        }

        public string CheckValue
        {
            get
            {
                return checkValue;
            }

            set
            {
                checkValue = value;
            }
        }

        public string VolTage
        {
            get
            {
                return volTage;
            }

            set
            {
                volTage = value;
            }
        }

        public DateTime CheckTime
        {
            get
            {
                return checkTime;
            }

            set
            {
                checkTime = value;
            }
        }
    }
}