doc.cs
来自「实现文本的特征提取」· CS 代码 · 共 56 行
CS
56 行
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 + =
减小字号Ctrl + -
显示快捷键?