⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 replyinfo.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.Model.Crm
{
    using PowerEasy.Model;
    using System;

    [Serializable]
    public class ReplyInfo : PowerEasy.Model.Nullable
    {
        private int m_Id;
        private int m_QuestionId;
        private string m_ReplyContent;
        private string m_ReplyCreator;
        private DateTime m_ReplyTime;

        public ReplyInfo()
        {
        }

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

        public ReplyInfo(int id, int questionId, string replyCreator, DateTime replyTime, string replyContent)
        {
            this.Id = id;
            this.QuestionId = questionId;
            this.ReplyCreator = replyCreator;
            this.ReplyTime = replyTime;
            this.ReplyContent = replyContent;
        }

        public int Id
        {
            get
            {
                return this.m_Id;
            }
            set
            {
                this.m_Id = value;
            }
        }

        public int QuestionId
        {
            get
            {
                return this.m_QuestionId;
            }
            set
            {
                this.m_QuestionId = value;
            }
        }

        public string ReplyContent
        {
            get
            {
                return this.m_ReplyContent;
            }
            set
            {
                this.m_ReplyContent = value;
            }
        }

        public string ReplyCreator
        {
            get
            {
                return this.m_ReplyCreator;
            }
            set
            {
                this.m_ReplyCreator = value;
            }
        }

        public DateTime ReplyTime
        {
            get
            {
                return this.m_ReplyTime;
            }
            set
            {
                this.m_ReplyTime = value;
            }
        }
    }
}

⌨️ 快捷键说明

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