12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace EMIS.ViewModel.EducationManage
- {
- /// <summary>
- /// 计划生成视图
- /// </summary>
- public class ExecutablePlanGenerateView
- {
- public ExecutablePlanGenerateView()
- {
- IsOverwrite = false;
- }
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
- public Guid? CampusID { get; set; }
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? CollegeID { get; set; }
- [DisplayName("年级")]
- public int? YearID { get; set; }
- [DisplayName("专业")]
- public int? StandardID { get; set; }
- [Required]
- [DisplayName("年级专业")]
- public Guid? GrademajorID { get; set; }
- [Required]
- [DisplayName("学年学期")]
- public Guid? SchoolyearID { get; set; }
- [DisplayName("是否覆盖")]
- public bool IsOverwrite { get; set; }
- }
- }
|