StudentExecutablePlanView.cs 425 B

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