using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-05-14 09:49 /// 描 述:选修课排课 /// public class ArrangeLessonTermOfElectiveEntity { #region 实体成员 /// /// Id /// [Column("ID")] public string Id { get; set; } /// /// PaiKeId /// [Column("PAIKEID")] public string PaiKeId { get; set; } /// /// LessonDate /// [Column("LESSONDATE")] public DateTime? LessonDate { get; set; } /// /// AcademicYearNo /// [Column("ACADEMICYEARNO")] public string AcademicYearNo { get; set; } /// /// Semester /// [Column("SEMESTER")] public string Semester { get; set; } /// /// LessonNo /// [Column("LESSONNO")] public string LessonNo { get; set; } /// /// LessonName /// [Column("LESSONNAME")] public string LessonName { get; set; } /// /// LessonSortNo /// [Column("LESSONSORTNO")] public string LessonSortNo { get; set; } /// /// LessonTime /// [Column("LESSONTIME")] public string LessonTime { get; set; } /// /// LessonSection /// [Column("LESSONSECTION")] public string LessonSection { get; set; } /// /// StudyScore /// [Column("STUDYSCORE")] public decimal? StudyScore { get; set; } /// /// EmpNo /// [Column("EMPNO")] public string EmpNo { get; set; } /// /// EmpName /// [Column("EMPNAME")] public string EmpName { get; set; } /// /// ClassRoomNo /// [Column("CLASSROOMNO")] public string ClassRoomNo { get; set; } /// /// ClassRoomName /// [Column("CLASSROOMNAME")] public string ClassRoomName { get; set; } /// /// CheckMark /// [Column("CHECKMARK")] public string CheckMark { get; set; } /// /// 学校主键 /// /// [Column("F_SCHOOLID")] public string F_SchoolId { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.Id = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }