📄 tempcourse.cs
字号:
using System;
using System.Collections;
namespace Entities
{
public class TempCourse
{
private Int32 tempCourseID;
private string tempCourseName;
private bool isValid;
private string tempCourseColor;
//外键关联的实体字段
//临时课ID
public Int32 TempCourseID
{
get { return tempCourseID; }
set { tempCourseID = value; }
}
//临时课名称
public string TempCourseName
{
get { return tempCourseName; }
set { tempCourseName = value; }
}
//是否有效
public bool IsValid
{
get { return isValid; }
set { isValid = value; }
}
//
public string TempCourseColor
{
get { return tempCourseColor; }
set { tempCourseColor = value; }
}
//外键关联的实体属性
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -