StudentDistributeGenerateView.cs 409 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.TeachingMaterial
  6. {
  7. public class StudentDistributeGenerateView
  8. {
  9. public Guid? SpecialtyPlanID { get; set; }
  10. public Guid? TeachingMaterialPoolID { get; set; }
  11. public int? StudentCount { get; set; }
  12. public Guid? OldStudentDistributeID { get; set; }
  13. }
  14. }