📄 topics.cs
字号:
using System;
namespace ExamSystem.Common.Objects
{
/// <summary>
/// Topics 的摘要说明。
/// </summary>
public class Topics
{
public Topics()
{
this.anwsers=-1;
this.cate=-1;
this.topicsAnwser="";
this.topicsDetil="";
this.topicsID=-1;
this.topicsLevel=-1;
}
private int topicsID;
/// <summary>
/// 考题ID
/// </summary>
public int TopicsID
{
get {return topicsID;}
set {topicsID=value;}
}
private string topicsDetil;
/// <summary>
/// 题干
/// </summary>
public string TopicsDetil
{
get {return topicsDetil;}
set {topicsDetil=value;}
}
private string topicsAnwser;
/// <summary>
/// 答案
/// </summary>
public string TopicsAnwser
{
get {return topicsAnwser;}
set {topicsAnwser=value;}
}
private int anwsers;
/// <summary>
/// 答案数
/// </summary>
public int Anwsers
{
get {return anwsers;}
set {anwsers=value;}
}
private int cate;
/// <summary>
/// 科目编号
/// </summary>
public int Cate
{
get {return cate;}
set {cate=value;}
}
private int topicsLevel;
/// <summary>
/// 难度
/// </summary>
public int TopicsLevel
{
get {return topicsLevel;}
set {topicsLevel=value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -