topics.cs
来自「考试管理系统CS架构 不需更多说明」· CS 代码 · 共 78 行
CS
78 行
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 + =
减小字号Ctrl + -
显示快捷键?