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