📄 doc.cs
字号:
using System;
namespace Njnu.Common
{
/// <summary>
/// Doc 的摘要说明。
/// </summary>
public class Doc
{
private string docID;
private string cateID;
private string path;
private string body;
private bool isDone;
private string testCateID;
private double simValue;
public string DocID
{
get { return docID; }
set { docID = value; }
}
public string CateID
{
get { return cateID; }
set { cateID = value; }
}
public string Path
{
get { return path; }
set { path = value; }
}
public string Body
{
get { return body; }
set { body = value; }
}
public bool IsDone
{
get { return isDone; }
set { isDone = value; }
}
public string TestCateID
{
get { return testCateID; }
set { testCateID = value; }
}
public double SimValue
{
get { return simValue; }
set { simValue = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -