123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.CultureplanManage.PlanManagement
- {
- public class StudentSpecialtyPlanView : SpecialtyPlanView
- {
- /// <summary>
- /// 用户ID
- /// </summary>
- [DisplayName("用户ID")]
- public Guid UserID { get; set; }
- }
- }
|