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