12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.EducationManagement;
- using System.ComponentModel;
- namespace EMIS.ViewModel.EducationManage
- {
- public class StudentExecutablePlanView : ExecutablePlanView
- {
- /// <summary>
- /// 用户ID
- /// </summary>
- [DisplayName("用户ID")]
- public Guid UserID { get; set; }
- }
- }
|