Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / CounterData.cs
yangqianqian on 30 Apr 2021 1 KB 4.30
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 long deviceId;
        private string outValue;
        private string value;
        private string sensitivity;
        private string logTime;
        private string detecType;

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public long DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

      

        public string OutValue
        {
            get
            {
                return outValue;
            }

            set
            {
                outValue = value;
            }
        }

        public string Value { get => value; set => this.value = value; }
        public string Sensitivity { get => sensitivity; set => sensitivity = value; }
        public string LogTime { get => logTime; set => logTime = value; }
        public string DetecType { get => detecType; set => detecType = value; }
    }
}