using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DataDictionary.Model
{
    public class OperationPosition
    {
        private int _id;
        private string _name;
        private string _helpcode;
        private string _explain;
        private int _positionorder;
        private int _isvalid;
        private string _operatorno;
        private string _operatorname;
        private DateTime _operatedate;
        /// 
        /// 
        /// 
        public int Id
        {
            set { _id = value; }
            get { return _id; }
        }
        /// 
        /// 
        /// 
        public string Name
        {
            set { _name = value; }
            get { return _name; }
        }
        /// 
        /// 
        /// 
        public string HelpCode
        {
            set { _helpcode = value; }
            get { return _helpcode; }
        }
        /// 
        /// 
        /// 
        public string Explain
        {
            set { _explain = value; }
            get { return _explain; }
        }
        /// 
        /// 
        /// 
        public int PositionOrder
        {
            set { _positionorder = value; }
            get { return _positionorder; }
        }
        /// 
        /// 
        /// 
        public int IsValid
        {
            set { _isvalid = value; }
            get { return _isvalid; }
        }
        /// 
        /// 
        /// 
        public string OperatorNo
        {
            set { _operatorno = value; }
            get { return _operatorno; }
        }
        /// 
        /// 
        /// 
        public string OperatorName
        {
            set { _operatorname = value; }
            get { return _operatorname; }
        }
        /// 
        /// 
        /// 
        public DateTime OperateDate
        {
            set { _operatedate = value; }
            get { return _operatedate; }
        }
    }
}