using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;

namespace EMIS.ViewModel
{
    public class ExaminationBatchView
    {

        [Required]
        [DisplayName("考试批次")]
        public System.Guid ExaminationBatchID { get; set; }
        public string Schoolyear { get; set; }

        [Required]
        [DisplayName("学年学期")]
        public Nullable<System.Guid> SchoolyearID { get; set; }

        [Required]
        [DisplayName("考试批次")]
        public string Name { get; set; }

        [Required]
        [DisplayName("报名时间起")]
        public Nullable<System.DateTime> StartDate { get; set; }

        [Required]
        [DisplayName("报名时间止")]
        public Nullable<System.DateTime> EndDate { get; set; }

        [DisplayName("备注")]
        public string Remark { get; set; }

        public int? RecordStatus { get; set; }
    }
}