📄 teachplan.cs
字号:
using System;
using System.Collections;
namespace Entities
{
public class TeachPlan
{
private Int32 teachPlanID;
private Int32 classID;
private Int32 courseID;
private Int32 teacherID;
private DateTime beginDate;
private DateTime overDate;
private Int32 timePlanID;
//外键关联的实体字段
private Course course ;
private Class cls ;
private TimePlan timePlan ;
private Employee employee ;
//授课安排ID
public Int32 TeachPlanID
{
get{ return teachPlanID;}
set{teachPlanID=value;}
}
//班级ID
public Int32 ClassID
{
get{ return classID;}
set{classID=value;}
}
//课程ID
public Int32 CourseID
{
get{ return courseID;}
set{courseID=value;}
}
//教员ID
public Int32 TeacherID
{
get{ return teacherID;}
set{teacherID=value;}
}
//开始授课时间
public DateTime BeginDate
{
get{ return beginDate;}
set{beginDate=value;}
}
//结束授课时间
public DateTime OverDate
{
get{ return overDate;}
set{overDate=value;}
}
//
public Int32 TimePlanID
{
get{ return timePlanID;}
set{timePlanID=value;}
}
//外键关联的实体属性
public Course Course
{
get{ return course; }
set{ course = value; }
}
public Class Class
{
get{ return cls; }
set{ cls = value; }
}
public TimePlan TimePlan
{
get{ return timePlan; }
set{ timePlan = value; }
}
public Employee Employee
{
get{ return employee; }
set{ employee = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -