Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Dto / DetectionDto.cs
yangqianqian on 7 Apr 2021 1 KB homepage
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Dto
{
    class DetectionDto
    {
        long id;

        //设备ID
        long deviceId;

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

        public long Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public long DeviceId
        {
            get
            {
                return deviceId;
            }

            set
            {
                deviceId = value;
            }
        }

        public string LogTime
        {
            get
            {
                return logTime;
            }

            set
            {
                logTime = value;
            }
        }

        public string Frequency
        {
            get
            {
                return frequency;
            }

            set
            {
                frequency = value;
            }
        }
    }
}