Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / Detection.cs
yxw on 23 Mar 2021 1 KB 添加数据接口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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

        //设备ID
        int deviceId;

        //记录时间
        DateTime logTime;
        //频率
        String frequency;

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public int DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public string Frequency
        {
            get
            {
                return frequency;
            }

            set
            {
                frequency = value;
            }
        }

        public DateTime LogTime
        {
            get
            {
                return logTime;
            }

            set
            {
                logTime = value;
            }
        }
    }
}