1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.EducationManage
- {
- public class LastCourseStarttermView
- {
- public Guid? SchoolyearID { get; set; }
- public int? SchoolyearNumID { get; set; }
- public Guid? CoursematerialID { get; set; }
- public Guid? DepartmentID { get; set; }
- public string ClassName { get; set; }
- public int? CourseTypeID { get; set; }
- public int? ExaminationModeID { get; set; }
- public int? HandleModeID { get; set; }
- public decimal? Credit { get; set; }
- public int? TotalHours { get; set; }
- public int? ResultTypeID { get; set; }
- public int? StarttermID { get; set; }
- public Guid? UserID { get; set; }
- [Obsolete]
- public bool IsRetake { get; set; }
- }
- }
|