using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
namespace EMIS.ViewModel.MinorManage.MinorSetting
{
public class MinorControlView
{
///
/// 辅修控制ID
///
public Guid MinorControlID { get; set; }
///
/// 学年学期ID
///
[Required]
[DisplayName("学年学期ID")]
public Guid? SchoolyearID { get; set; }
///
/// 学年学期
///
[Required]
[DisplayName("学年学期")]
public string SchoolyearCode { get; set; }
///
/// 年级
///
[Required]
[DisplayName("年级")]
public int? GradeYearID { get; set; }
///
/// 院系所
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeID")]
public Guid? CollegeID { get; set; }
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public string CollegeName { get; set; }
///
/// 开始时间
///
[Required]
[DisplayName("开始时间")]
public DateTime? StartDate { get; set; }
///
/// 结束时间
///
[Required]
[DisplayName("结束时间")]
public DateTime? EndDate { get; set; }
///
/// RecordStatus
///
public int RecordStatus { get; set; }
///
/// CreateTime
///
public DateTime CreateTime { get; set; }
///
/// CreateUserID
///
public Guid CreateUserID { get; set; }
///
/// ModifyUserID
///
public Guid ModifyUserID { get; set; }
///
/// ModifyTime
///
public DateTime ModifyTime { get; set; }
}
}