EducationSchedulingConflictView.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.EducationSchedule
  6. {
  7. public class EducationSchedulingConflictView
  8. {
  9. public Guid? EducationSchedulingWeekNumID { get; set; }
  10. public Guid? EducationSchedulingAdjustmentID { get; set; }
  11. public Guid? SchoolyearID { get; set; }
  12. public string SchoolyearCode { get; set; }
  13. public Guid? EducationSchedulingClassID { get; set; }
  14. public string EducationMissionClassName { get; set; }
  15. public Guid? CoursematerialID { get; set; }
  16. public string CourseName { get; set; }
  17. public int? WeekNum { get; set; }
  18. public int? Weekday { get; set; }
  19. public Guid? CoursesTime { get; set; }
  20. public int? StartTimes { get; set; }
  21. public int? EndTimes { get; set; }
  22. public Guid? ClassroomID { get; set; }
  23. public string ClassroomName { get; set; }
  24. public int? StudentNum { get; set; }
  25. public Guid? UserID { get; set; }
  26. public string UserName { get; set; }
  27. public string Reason { get; set; }
  28. }
  29. }