123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.EducationSchedule
- {
- public class EducationSchedulingConflictView
- {
- public Guid? EducationSchedulingWeekNumID { get; set; }
- public Guid? EducationSchedulingAdjustmentID { get; set; }
- public Guid? SchoolyearID { get; set; }
- public string SchoolyearCode { get; set; }
- public Guid? EducationSchedulingClassID { get; set; }
- public string EducationMissionClassName { get; set; }
- public Guid? CoursematerialID { get; set; }
- public string CourseName { get; set; }
- public int? WeekNum { get; set; }
- public int? Weekday { get; set; }
- public Guid? CoursesTime { get; set; }
- public int? StartTimes { get; set; }
- public int? EndTimes { get; set; }
- public Guid? ClassroomID { get; set; }
- public string ClassroomName { get; set; }
- public int? StudentNum { get; set; }
- public Guid? UserID { get; set; }
- public string UserName { get; set; }
- public string Reason { get; set; }
- }
- }
|