1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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; }
- }
- }
|