using System; using System.Linq; using System.Text; namespace OrmTest.Demo { public class CS_TeacherStudent { /// /// Desc:- /// Default:(newid()) /// Nullable:False /// public Guid tabId {get;set;} /// /// Desc:教师Id /// Default:- /// Nullable:False /// public string teacherId {get;set;} /// /// Desc:教师课程Id(对应TeacherCourse.tabId) /// Default:- /// Nullable:False /// public string teacherCourseId {get;set;} /// /// Desc:教学头内的序号 /// Default:- /// Nullable:True /// public int? ordInTC {get;set;} /// /// Desc:学号 /// Default:- /// Nullable:False /// public string stuId {get;set;} /// /// Desc:学生姓名 /// Default:- /// Nullable:True /// public string stuName {get;set;} /// /// Desc:性别 /// Default:- /// Nullable:True /// public string stuSex {get;set;} /// /// Desc:所属院系Id /// Default:- /// Nullable:True /// public string deptId {get;set;} /// /// Desc:所属班级Id /// Default:- /// Nullable:True /// public string classId {get;set;} /// /// Desc:不能对应班级代码的班级名称时源班级名称 /// Default:- /// Nullable:True /// public string sclassName {get;set;} /// /// Desc:- /// Default:((1)) /// Nullable:True /// public int? validFlag {get;set;} } }