SchoolyearView.cs 409 B

12345678910111213141516171819
  1. using EMIS.ViewModel.Cache;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace EMIS.ViewModel.UniversityInformationManage.Specialtyclass
  8. {
  9. public class SchoolyearView
  10. {
  11. /// <summary>
  12. /// 年级
  13. /// </summary>
  14. [DisplayName("年级")]
  15. public string SchoolyearID { get; set; }
  16. }
  17. }