1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using EMIS.ViewModel.CacheManage;
- namespace EMIS.ViewModel.ScoreManage
- {
-
-
-
- public class ScoreView : FinalExaminationView
- {
- public Guid? ScoreID { get; set; }
-
-
-
- public Guid? UserID { get; set; }
-
-
-
- public string LoginID { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public Guid? FinalExaminationID { get; set; }
-
-
-
- public int? ExamsStateID { get; set; }
-
-
-
- public int? ApprovalStatus { get; set; }
-
-
-
- public decimal? Score { get; set; }
-
-
-
- public decimal? Credit { get; set; }
-
-
-
- public decimal? GradePoint { get; set; }
-
-
-
- public string Remarks { get; set; }
- public DateTime? CreateTime { get; set; }
- public Guid? CreateUserID { get; set; }
- }
- }
|