Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DevService / Dto / SensitivityContentParam.cs
yxw on 9 Apr 2021 1 KB 添加LAN通信
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 ampl;

        //当前检测值频率
        private string reFreq;

        //当前检测值周期
        private string rePeriod;

        public string Freq
        {
            get
            {
                return freq;
            }

            set
            {
                freq = value;
            }
        }

        public string Period
        {
            get
            {
                return period;
            }

            set
            {
                period = value;
            }
        }

        public string Ampl
        {
            get
            {
                return ampl;
            }

            set
            {
                ampl = 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;
            }
        }

    }
}