12345678910111213141516171819 |
- using EMIS.ViewModel.Cache;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.UniversityInformationManage.Specialtyclass
- {
- public class SchoolyearView
- {
- /// <summary>
- /// 年级
- /// </summary>
- [DisplayName("年级")]
- public string SchoolyearID { get; set; }
- }
- }
|