questionallotinfo.cs

来自「动易SiteFactory&#8482 网上商店系统1.0源代码」· CS 代码 · 共 72 行

CS
72
字号
namespace PowerEasy.Model.Crm
{
    using PowerEasy.Model;
    using System;

    public class QuestionAllotInfo : PowerEasy.Model.Nullable
    {
        private int m_AdminId;
        private string m_AdminName;
        private int m_TypeId;
        private string m_TypeName;

        public QuestionAllotInfo()
        {
        }

        public QuestionAllotInfo(bool value)
        {
            base.IsNull = value;
        }

        public int AdminId
        {
            get
            {
                return this.m_AdminId;
            }
            set
            {
                this.m_AdminId = value;
            }
        }

        public string AdminName
        {
            get
            {
                return this.m_AdminName;
            }
            set
            {
                this.m_AdminName = value;
            }
        }

        public int TypeId
        {
            get
            {
                return this.m_TypeId;
            }
            set
            {
                this.m_TypeId = value;
            }
        }

        public string TypeName
        {
            get
            {
                return this.m_TypeName;
            }
            set
            {
                this.m_TypeName = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?