StudentAndCourseForExcelView.cs 617 B

12345678910111213141516171819202122232425262728
  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 StudentAndCourseForExcelView
  8. {
  9. public Guid? UserID { get; set; }
  10. public string LoginID { get; set; }
  11. public string UserName { get; set; }
  12. public Guid? CollegeID { get; set; }
  13. public string CollegeName { get; set; }
  14. public Guid? ClassmajorID { get; set; }
  15. public string ClassmajorName { get; set; }
  16. public Guid? CourseID { get; set; }
  17. public string CourseName { get; set; }
  18. }
  19. }