📄 multiproblem.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace ExamModel.Auto_Generated_Code
{
public class MultiProblem
{
/// <summary>
/// 多选题模型
/// </summary>
private int multiProblemID;
private Course mcourse;
private string Title = String.Empty;
private string AnswerA = String.Empty;
private string AnswerB = String.Empty;
private string AnswerC = String.Empty;
private string AnswerD = String.Empty;
private string Answer = String.Empty;
//多选题主键
public int MultiProblemID
{
get { return this.multiProblemID; }
set { this.multiProblemID = value; }
}
//课程ID
public Course MCourse
{
get { return this.mcourse; }
set { this.mcourse = value; }
}
//题目
public string MTitle
{
get { return this.Title; }
set { this.Title = value; }
}
//多选题答案A
public string ManswerA
{
get { return this.AnswerA; }
set { this.AnswerA = value; }
}
//多选题答案B
public string ManswerB
{
get { return this.AnswerB; }
set { this.AnswerB = value; }
}
//多选题答案C
public string ManswerC
{
get { return this.AnswerC; }
set { this.AnswerC = value; }
}
//多选题答案D
public string ManswerD
{
get { return this.AnswerD; }
set { this.AnswerD = value; }
}
//多选题正确答案
public string Manswer
{
get { return this.Answer; }
set { this.Answer = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -