123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- 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 FinallyScoreView
- {
- /// <summary>
- /// 最终成绩ID
- /// </summary>
- [DisplayName("最终成绩ID")]
- public Guid? FinallyScoreID { get; set; }
- /// <summary>
- /// 学年学期
- /// </summary>
- [Required]
- [DisplayName("学年学期")]
- public Guid? SchoolyearID { get; set; }
- /// <summary>
- /// 学年学期
- /// </summary>
- [DisplayName("学年学期")]
- public string SchoolyearCode { get; set; }
- /// <summary>
- /// 学生ID
- /// </summary>
- [Required]
- [DisplayName("学生ID")]
- public Guid? UserID { get; set; }
- /// <summary>
- /// 学号
- /// </summary>
- [DisplayName("学号")]
- public string LoginID { get; set; }
- /// <summary>
- /// 姓名
- /// </summary>
- [DisplayName("姓名")]
- public string UserName { get; set; }
- /// <summary>
- /// 班级信息ID
- /// </summary>
- [DisplayName("班级信息ID")]
- public Guid? ClassmajorID { get; set; }
- /// <summary>
- /// 班级编号
- /// </summary>
- [DisplayName("班级编号")]
- public string ClassmajorNo { get; set; }
- /// <summary>
- /// 班级名称
- /// </summary>
- [DisplayName("班级名称")]
- public string ClassmajorName { get; set; }
- /// <summary>
- /// 院系所
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? CollegeID { get; set; }
- /// <summary>
- /// 院系所代码
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
- public string CollegeNo { get; set; }
- /// <summary>
- /// 院系所
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public string CollegeName { get; set; }
- /// <summary>
- /// 学年数
- /// </summary>
- [Required]
- [DisplayName("学年数")]
- public int? SchoolyearNumID { get; set; }
- /// <summary>
- /// 学年数
- /// </summary>
- [DisplayName("学年数")]
- public string SchoolyearNumName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_SchoolyearNum.ToString())
- .Where(x => x.Value == SchoolyearNumID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 开课学期
- /// </summary>
- [DisplayName("开课学期")]
- public int? StarttermID { get; set; }
- /// <summary>
- /// 开课学期
- /// </summary>
- public string StarttermName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Startterm.ToString())
- .Where(x => x.Value == StarttermID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 录入班级名称
- /// </summary>
- [Required]
- [DisplayName("录入班级名称")]
- public string ClassName { get; set; }
- /// <summary>
- /// 课程名称
- /// </summary>
- [Required]
- [DisplayName("课程名称")]
- public Guid? CoursematerialID { get; set; }
- /// <summary>
- /// 课程代码
- /// </summary>
- [DisplayName("课程代码")]
- public string CourseCode { get; set; }
- /// <summary>
- /// 课程名称
- /// </summary>
- [DisplayName("课程名称")]
- public string CourseName { get; set; }
- /// <summary>
- /// 开课教研室
- /// </summary>
- [Required]
- [DisplayName("开课教研室")]
- public Guid? DepartmentID { get; set; }
- /// <summary>
- /// 开课教研室代码
- /// </summary>
- [DisplayName("开课教研室代码")]
- public string DepartmentNo { get; set; }
- /// <summary>
- /// 开课教研室
- /// </summary>
- [DisplayName("开课教研室")]
- public string DepartmentName { get; set; }
- /// <summary>
- /// 课程类型
- /// </summary>
- [Required]
- [DisplayName("课程类型")]
- public int? CourseTypeID { get; set; }
- /// <summary>
- /// 课程类型
- /// </summary>
- [DisplayName("课程类型")]
- public string CourseTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_CourseType.ToString())
- .Where(x => x.Value == CourseTypeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 是否学位课程
- /// </summary>
- [DisplayName("是否学位课程")]
- public bool IsMainCourse { get; set; }
- /// <summary>
- /// 是否学位课程
- /// </summary>
- [DisplayName("是否学位课程")]
- public string IsMainCourseName
- {
- get { return this.IsMainCourse == true ? "是" : "否"; }
- }
- /// <summary>
- /// 选修类别
- /// </summary>
- [DisplayName("选修类别")]
- public int? CourseSelectTypeID { get; set; }
- /// <summary>
- /// 选修类别
- /// </summary>
- [DisplayName("选修类别")]
- public string CourseSelectTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_CourseSelectType.ToString())
- .Where(x => x.Value == CourseSelectTypeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 背景颜色(课程类型)
- /// </summary>
- [DisplayName("背景颜色")]
- public string CourseTypeColour { get; set; }
- /// <summary>
- /// 课程学分
- /// </summary>
- [Required]
- [DisplayName("课程学分")]
- [RegularExpression(@"^\d+(\.\d{2})?$", ErrorMessage = "请输整数或保留2位小数")]
- public decimal? Credit { get; set; }
- /// <summary>
- /// 总学时
- /// </summary>
- [Required]
- [DisplayName("总学时")]
- public int? TotalHours { get; set; }
- /// <summary>
- /// 是否计划(执行计划)
- /// </summary>
- [DisplayName("是否计划")]
- public bool IsExecutablePlan { get; set; }
- /// <summary>
- /// 是否计划(执行计划)
- /// </summary>
- [DisplayName("是否计划")]
- public string IsExecutablePlanName
- {
- get { return this.IsExecutablePlan == true ? "是" : "否"; }
- }
- /// <summary>
- /// 计划状态(执行计划)
- /// </summary>
- [DisplayName("计划状态")]
- public int? ExecutablePlanStatus { get; set; }
- /// <summary>
- /// 计划状态(执行计划)
- /// </summary>
- [DisplayName("计划状态")]
- public string ExecutablePlanStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.EM_ExecuteStatus.ToString())
- .Where(x => x.Value == ExecutablePlanStatus)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 设定类型
- /// </summary>
- [Required]
- [DisplayName("设定类型")]
- public int? ExaminationType { get; set; }
- /// <summary>
- /// 设定类型
- /// </summary>
- [DisplayName("设定类型")]
- public string ExaminationTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ExaminationType.ToString())
- .Where(x => x.Value == ExaminationType)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 考试方式
- /// </summary>
- [Required]
- [DisplayName("考试方式")]
- public int? ExaminationModeID { get; set; }
- /// <summary>
- /// 考试方式
- /// </summary>
- [DisplayName("考试方式")]
- public string ExaminationModeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ExaminationMode.ToString())
- .Where(x => x.Value == ExaminationModeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 处理方式
- /// </summary>
- [Required]
- [DisplayName("处理方式")]
- public int? HandleModeID { get; set; }
- /// <summary>
- /// 处理方式
- /// </summary>
- [DisplayName("处理方式")]
- public string HandleModeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_HandleMode.ToString())
- .Where(x => x.Value == HandleModeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 考试日期
- /// </summary>
- [DisplayName("考试日期")]
- public DateTime? ExamsDatetime { get; set; }
- /// <summary>
- /// 录入人
- /// </summary>
- [Required]
- [DisplayName("录入人")]
- public Guid? CreatorUserID { get; set; }
- /// <summary>
- /// 录入人
- /// </summary>
- [DisplayName("录入人")]
- public string CreatorUserNo { get; set; }
- /// <summary>
- /// 录入人
- /// </summary>
- [DisplayName("录入人")]
- public string CreatorUserName { get; set; }
- /// <summary>
- /// 录入截止日期
- /// </summary>
- [DisplayName("录入截止日期")]
- public DateTime? EntryDeadlineTime { get; set; }
- /// <summary>
- /// 成绩类型
- /// </summary>
- [Required]
- [DisplayName("成绩类型")]
- public int? ResultTypeID { get; set; }
- /// <summary>
- /// 成绩类型
- /// </summary>
- [DisplayName("成绩类型")]
- public string ResultTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ResultType.ToString())
- .Where(x => x.Value == ResultTypeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 考试性质
- /// </summary>
- [Required]
- [DisplayName("考试性质")]
- public int? ExamsCategoryID { get; set; }
- /// <summary>
- /// 考试性质
- /// </summary>
- [DisplayName("考试性质")]
- public string ExamsCategoryName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ExamsCategory.ToString())
- .Where(x => x.Value == ExamsCategoryID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 考试状态
- /// </summary>
- [DisplayName("考试状态")]
- public int? ExamsStateID { get; set; }
- /// <summary>
- /// 考试状态
- /// </summary>
- public string ExamsStateName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ExamsState.ToString())
- .Where(x => x.Value == ExamsStateID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 平时成绩
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Peacetime")]
- public decimal? Pingshi { get; set; }
- /// <summary>
- /// 技术成绩
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Technique")]
- public decimal? Jishu { get; set; }
- /// <summary>
- /// 理论成绩
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Theoretical")]
- public decimal? Lilun { get; set; }
- /// <summary>
- /// 总成绩
- /// </summary>
- [DisplayName("总成绩")]
- public decimal? TotalScore { get; set; }
- /// <summary>
- /// 成绩学分
- /// </summary>
- [DisplayName("成绩学分")]
- public decimal? ScoreCredit { get; set; }
- /// <summary>
- /// 绩点
- /// </summary>
- [DisplayName("绩点")]
- public decimal? GradePoint { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [DisplayName("备注")]
- public string Remarks { get; set; }
- /// <summary>
- /// 状态
- /// </summary>
- [DisplayName("状态")]
- public int? RecordStatus { get; set; }
- /// <summary>
- /// 创建人ID
- /// </summary>
- [DisplayName("创建人ID")]
- public Guid? CreateUserID { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [DisplayName("创建时间")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// 修改人ID
- /// </summary>
- [DisplayName("修改人ID")]
- public Guid? ModifyUserID { get; set; }
- /// <summary>
- /// 修改时间
- /// </summary>
- [DisplayName("修改时间")]
- public DateTime? ModifyTime { get; set; }
- [DisplayName("序号")]
- public int? OrderNo { get; set; }
- }
- }
|