📄 classtype.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Y2T03.CourseScheduler.CourseModel
{
/// <summary>
/// 实体类 ClassType
/// </summary>
[Serializable]
public class ClassType
{
public ClassType()
{ }
#region 实体类 ClassType
private string _typecode;
private string _title;
/// <summary>
/// 班级类型代码
/// </summary>
public string TypeCode
{
set { this._typecode = value; }
get { return this._typecode; }
}
/// <summary>
/// 班级类型描述
/// </summary>
public string Title
{
set { this._title = value; }
get { return this._title; }
}
public override string ToString()
{
return this._title;
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -