1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.Coursework
- {
- public class TeacherScoreView
- {
- public Guid? StudentID { get; set; }
- public Guid? TeacherScoreID { get; set; }
- public string StudentCardNo { get; set; }
- public string StudentName { get; set; }
- public Guid? CoursematerialID { get; set; }
- public string CourseName { get; set; }
- public string yearCode { get; set; }
- public Guid? SchoolyearID { get; set; }
- public Guid? TeacherID { get; set; }
- public string TeacherName { get; set; }
- public DateTime? ModifyTime { get; set; }
- public decimal? Score { get; set; }
- }
- }
|