Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Dto / CounterDataDto.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Dto
{
    class CounterDataDto
    {
        private int id;

        private string model;

        private string devCode;

        private string channel;

        private string nominalValue;

        private string indexValue;

        private string createTime;

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

        public string Model
        {
            get
            {
                return model;
            }

            set
            {
                model = value;
            }
        }

        public string DevCode
        {
            get
            {
                return devCode;
            }

            set
            {
                devCode = value;
            }
        }

        public string Channel
        {
            get
            {
                return channel;
            }

            set
            {
                channel = value;
            }
        }

        public string NominalValue
        {
            get
            {
                return nominalValue;
            }

            set
            {
                nominalValue = value;
            }
        }

        public string IndexValue
        {
            get
            {
                return indexValue;
            }

            set
            {
                indexValue = value;
            }
        }

        public string CreateTime
        {
            get
            {
                return createTime;
            }

            set
            {
                createTime = value;
            }
        }

    }
}