CompetitionAPI_dotnet/RuralPower/Model/pow_choice_question.cs

139 lines
2.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RuralPower.Model
{
/// <summary>
/// pow_choice_question:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class pow_choice_question
{
public pow_choice_question()
{ }
#region Model
private string _choicequestionid;
private string _examid;
private string _topic;
private string _optiona;
private string _optionb;
private string _optionc;
private string _optiond;
private string _rightkey;
private string _remark1;
private string _remark2;
private string _remark3;
private string _remark4;
private string _remark5;
/// <summary>
///
/// </summary>
public string ChoiceQuestionId
{
set { _choicequestionid = value; }
get { return _choicequestionid; }
}
/// <summary>
///
/// </summary>
public string ExamId
{
set { _examid = value; }
get { return _examid; }
}
/// <summary>
///
/// </summary>
public string Topic
{
set { _topic = value; }
get { return _topic; }
}
/// <summary>
///
/// </summary>
public string OptionA
{
set { _optiona = value; }
get { return _optiona; }
}
/// <summary>
///
/// </summary>
public string OptionB
{
set { _optionb = value; }
get { return _optionb; }
}
/// <summary>
///
/// </summary>
public string OptionC
{
set { _optionc = value; }
get { return _optionc; }
}
/// <summary>
///
/// </summary>
public string OptionD
{
set { _optiond = value; }
get { return _optiond; }
}
/// <summary>
///
/// </summary>
public string RightKey
{
set { _rightkey = value; }
get { return _rightkey; }
}
/// <summary>
///
/// </summary>
public string Remark1
{
set { _remark1 = value; }
get { return _remark1; }
}
/// <summary>
///
/// </summary>
public string Remark2
{
set { _remark2 = value; }
get { return _remark2; }
}
/// <summary>
///
/// </summary>
public string Remark3
{
set { _remark3 = value; }
get { return _remark3; }
}
/// <summary>
///
/// </summary>
public string Remark4
{
set { _remark4 = value; }
get { return _remark4; }
}
/// <summary>
///
/// </summary>
public string Remark5
{
set { _remark5 = value; }
get { return _remark5; }
}
#endregion Model
}
}