TeacherScoreView.cs 754 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMISOnline.ViewModel.Coursework
  6. {
  7. public class TeacherScoreView
  8. {
  9. public Guid? StudentID { get; set; }
  10. public Guid? TeacherScoreID { get; set; }
  11. public string StudentCardNo { get; set; }
  12. public string StudentName { get; set; }
  13. public Guid? CoursematerialID { get; set; }
  14. public string CourseName { get; set; }
  15. public string yearCode { get; set; }
  16. public Guid? SchoolyearID { get; set; }
  17. public Guid? TeacherID { get; set; }
  18. public string TeacherName { get; set; }
  19. public DateTime? ModifyTime { get; set; }
  20. public decimal? Score { get; set; }
  21. }
  22. }