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; } /// /// 学生ID /// public Guid? UserID { get; set; } /// /// 学号 /// public string LoginID { get; set; } /// /// 姓名 /// public string UserName { get; set; } /// /// 期末设定ID /// 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; } } }