Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / Detection.cs
yangqianqian on 6 May 2021 1 KB counter ui
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model
{
    /// <summary>
    /// 检测值
    /// </summary>
    public class Detection
    {
        long id;

        //设备ID
        long deviceId;

        //记录时间
        string logTime;
        //频率
        string frequency;

        string detectionItem;

        public long Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public long DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public string Frequency
        {
            get
            {
                return frequency;
            }

            set
            {
                frequency = value;
            }
        }

        public string LogTime
        {
            get
            {
                return logTime;
            }

            set
            {
                logTime = value;
            }
        }

        public string DetectionItem { get => detectionItem; set => detectionItem = value; }
        
    }
}