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; } } } }