using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Casic.Birmm.RbFreqStandMeasure.R_DevService.Dto { class SensitivityContentParam { //当前测量模式0,频率;1周期 private string checkModel; //输入频率 private string freq; //输入周期 private string period; //输入灵敏度 private string volTage; //输出检测值频率 private string reFreq; //输出检测值周期 private string rePeriod; //检测时间 private DateTime checkTime; public string Freq { get { return freq; } set { freq = value; } } public string Period { get { return period; } set { period = value; } } public string ReFreq { get { return reFreq; } set { reFreq = value; } } public string RePeriod { get { return rePeriod; } set { rePeriod = value; } } public string CheckModel { get { return checkModel; } set { checkModel = value; } } public string VolTage { get { return volTage; } set { volTage = value; } } public DateTime CheckTime { get { return checkTime; } set { checkTime = value; } } } }