using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using EMIS.ViewModel.CacheManage; using System.ComponentModel.DataAnnotations; namespace EMIS.ViewModel.SchedulingManage.ScheduleApproval { public class CollegeScheduleApprovalView { [DisplayName("学年学期")] public Guid? SchoolyearID { get; set; } [DisplayName("学年学期")] public string SchoolYearCode { get; set; } [DisplayName("院系排课优先级设置ID")] public Guid? CollegePriorityID { get; set; } [DisplayName("院系排课优先级设置ID")] public Guid? CollegeScheduleStatusID { get; set; } [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public Guid? CollegeID { get; set; } [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public string CollegeName { get; set; } public string CollegeNo { get; set; } [DisplayName("优先级")] public int? Priority { get; set; } [DisplayName("开始日期")] public DateTime? StartDate { get; set; } [DisplayName("结束日期")] public DateTime? EndDate { get; set; } [DisplayName("审批状态")] public int? ApprovalStatus { get; set; } [DisplayName("状态")] public string StatusName { get; set; } [DisplayName("状态")] public int? RecordStatus { get; set; } [DisplayName("创建人")] public Guid? CreateUserID { get; set; } [DisplayName("创建时间")] public DateTime? CreateTime { get; set; } [DisplayName("修改人")] public Guid? ModifyUserID { get; set; } [DisplayName("修改人")] public string ModifyUserName { get; set; } [DisplayName("修改时间")] public DateTime? ModifyTime { get; set; } } }