You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ArrangeLessonTermAttrmperChildEntity.cs 3.2 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. using Learun.Util;
  2. using System;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
  8. /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2023-06-12 11:53
  11. /// 描 述:教学调度调课子类
  12. /// </summary>
  13. public class ArrangeLessonTermAttrmperChildEntity
  14. {
  15. #region 实体成员
  16. /// <summary>
  17. /// Id
  18. /// </summary>
  19. [Column("ID")]
  20. public string Id { get; set; }
  21. /// <summary>
  22. /// AttemperId
  23. /// </summary>
  24. [Column("ATTEMPERID")]
  25. public string AttemperId { get; set; }
  26. /// <summary>
  27. /// LessonId
  28. /// </summary>
  29. [Column("LESSONID")]
  30. public string LessonId { get; set; }
  31. /// <summary>
  32. /// LessonDate
  33. /// </summary>
  34. [Column("LESSONDATE")]
  35. public DateTime LessonDate { get; set; }
  36. /// <summary>
  37. /// LessonTime
  38. /// </summary>
  39. [Column("LESSONTIME")]
  40. public string LessonTime { get; set; }
  41. /// <summary>
  42. /// NewLessonDate
  43. /// </summary>
  44. [Column("NEWLESSONDATE")]
  45. public DateTime NewLessonDate { get; set; }
  46. /// <summary>
  47. /// NewLessonTime
  48. /// </summary>
  49. [Column("NEWLESSONTIME")]
  50. public string NewLessonTime { get; set; }
  51. /// <summary>
  52. /// CreateTime
  53. /// </summary>
  54. [Column("CREATETIME")]
  55. public DateTime? CreateTime { get; set; }
  56. /// <summary>
  57. /// CreateUserId
  58. /// </summary>
  59. [Column("CREATEUSERID")]
  60. public string CreateUserId { get; set; }
  61. /// <summary>
  62. /// CreateUserName
  63. /// </summary>
  64. [Column("CREATEUSERNAME")]
  65. public string CreateUserName { get; set; }
  66. /// <summary>
  67. /// 教师
  68. /// </summary>
  69. [NotMapped]
  70. public string EmpName { set; get; }
  71. [NotMapped]
  72. public string EmpNo { set; get; }
  73. /// <summary>
  74. /// 课程
  75. /// </summary>
  76. [NotMapped]
  77. public string LessonName { set; get; }
  78. [NotMapped]
  79. public string TeachClassNo { set; get; }
  80. /// <summary>
  81. /// 教室
  82. /// </summary>
  83. [NotMapped]
  84. public string ClassroomName { set; get; }
  85. /// <summary>
  86. /// 教室
  87. /// </summary>
  88. [NotMapped]
  89. public string Classname { set; get; }
  90. /// <summary>
  91. /// 节次
  92. /// </summary>
  93. [NotMapped]
  94. public string LessTime { set; get; }
  95. #endregion
  96. #region 扩展操作
  97. /// <summary>
  98. /// 新增调用
  99. /// </summary>
  100. public void Create()
  101. {
  102. this.Id = Guid.NewGuid().ToString();
  103. }
  104. /// <summary>
  105. /// 编辑调用
  106. /// </summary>
  107. /// <param name="keyValue"></param>
  108. public void Modify( string id)
  109. {
  110. this.Id = id;
  111. }
  112. #endregion
  113. #region 扩展字段
  114. #endregion
  115. }
  116. }