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

📄 surveyvoteinfo.cs

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

    public class SurveyVoteInfo : PowerEasy.Model.Nullable
    {
        private int m_ID;
        private int m_OptionId;
        private int m_QuestionId;
        private int m_SurveyId;
        private int m_VoteAmount;

        public SurveyVoteInfo()
        {
        }

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

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

        public int OptionId
        {
            get
            {
                return this.m_OptionId;
            }
            set
            {
                this.m_OptionId = value;
            }
        }

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

        public int SurveyId
        {
            get
            {
                return this.m_SurveyId;
            }
            set
            {
                this.m_SurveyId = value;
            }
        }

        public int VoteAmount
        {
            get
            {
                return this.m_VoteAmount;
            }
            set
            {
                this.m_VoteAmount = value;
            }
        }
    }
}

⌨️ 快捷键说明

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