using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// <summary> /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 /// 创 建:超级管理员 /// 日 期:2023-06-12 11:53 /// 描 述:教学调度调课子类 /// </summary> public class ArrangeLessonTermAttrmperChildEntity { #region 实体成员 /// <summary> /// Id /// </summary> [Column("ID")] public string Id { get; set; } /// <summary> /// AttemperId /// </summary> [Column("ATTEMPERID")] public string AttemperId { get; set; } /// <summary> /// LessonId /// </summary> [Column("LESSONID")] public string LessonId { get; set; } /// <summary> /// LessonDate /// </summary> [Column("LESSONDATE")] public DateTime LessonDate { get; set; } /// <summary> /// LessonTime /// </summary> [Column("LESSONTIME")] public string LessonTime { get; set; } /// <summary> /// NewLessonDate /// </summary> [Column("NEWLESSONDATE")] public DateTime NewLessonDate { get; set; } /// <summary> /// NewLessonTime /// </summary> [Column("NEWLESSONTIME")] public string NewLessonTime { get; set; } /// <summary> /// CreateTime /// </summary> [Column("CREATETIME")] public DateTime? CreateTime { get; set; } /// <summary> /// CreateUserId /// </summary> [Column("CREATEUSERID")] public string CreateUserId { get; set; } /// <summary> /// CreateUserName /// </summary> [Column("CREATEUSERNAME")] public string CreateUserName { get; set; } /// <summary> /// 教师 /// </summary> [NotMapped] public string EmpName { set; get; } [NotMapped] public string EmpNo { set; get; } /// <summary> /// 课程 /// </summary> [NotMapped] public string LessonName { set; get; } [NotMapped] public string TeachClassNo { set; get; } /// <summary> /// 教室 /// </summary> [NotMapped] public string ClassroomName { set; get; } /// <summary> /// 教室 /// </summary> [NotMapped] public string Classname { set; get; } /// <summary> /// 节次 /// </summary> [NotMapped] public string LessTime { set; get; } #endregion #region 扩展操作 /// <summary> /// 新增调用 /// </summary> public void Create() { this.Id = Guid.NewGuid().ToString(); } /// <summary> /// 编辑调用 /// </summary> /// <param name="keyValue"></param> public void Modify( string id) { this.Id = id; } #endregion #region 扩展字段 #endregion } }