📄 surveyvoteinfo.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 + -