StudentSpecialtyPlanView.cs 397 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EMIS.ViewModel.CultureplanManage.PlanManagement
  7. {
  8. public class StudentSpecialtyPlanView : SpecialtyPlanView
  9. {
  10. /// <summary>
  11. /// 用户ID
  12. /// </summary>
  13. [DisplayName("用户ID")]
  14. public Guid UserID { get; set; }
  15. }
  16. }