Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / CounterData.cs
yangqianqian on 8 Apr 2021 1 KB detail-setting-databackup complete
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 int detecType; //1-频率测量,2-周期测量 

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public long DeviceId { get => deviceId; set => deviceId = value; }
        public string OutValue { get => 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 int DetecType { get => detecType; set => detecType = value; }
    }
}