123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ExamManage
- {
- public class LevelSettingView
- {
- [DisplayName("等级设置ID")]
- public Guid? LevelSettingID { get; set; }
- [Required]
- [DisplayName("考试项目ID")]
- public Guid? ExaminationProjectID { get; set; }
- [DisplayName("项目名称")]
- public string ExaminationProjectName { get; set; }
- [Required]
- [DisplayName("认定结果名称")]
- public string LevelName { get; set; }
- [DisplayName("是否通过")]
- public bool? IsPassed { get; set; }
- public string IsPassStr {
- get {
- return IsPassed != true ? "否" : "是";
- }
- }
- [DisplayName("是否及格线")]
- public bool IsPassedEdit { get; set; }
- [DisplayName("是否及格线")]
- public bool? IsPassLine { get; set; }
- public string IsPassLineStr
- {
- get
- {
- return IsPassLine != true ? "否" : "是";
- }
- }
- [DisplayName("是否及格线")]
- public bool IsPassLineEdit { get; set; }
- [DisplayName("状态")]
- public int? RecordStatus { get; set; }
- [Required]
- [DisplayName("考试类型")]
- public Guid? ExaminationTypeID { get; set; }
- [DisplayName("考试类型")]
- public string ExaminationTypeName { get; set; }
-
- //public ExaminationProjectView ExaminationProjectView { get; set; }
- }
- }
|