123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class CoursematerialPlanView
- {
- public Guid? CollegeID { get; set; }
- public string CollegeName { get; set; }
- public int? SchoolyearNumID { get; set; }
- public int? SchoolcodeID { get; set; }
- public int? StartTermID { get; set; }
- public Guid? CoursematerialID { get; set; }
- public string CourseCode { get; set; }
- public string CourseName { get; set; }
- //public string? Tag { get; set; }
- public int? CourseTypeID { get; set; }
- public decimal? Credit { get; set; }
- public Guid? SpecialtyID { get; set; }
- public int? Years { get; set; }
- public int? TypePlan { get; set; }
- public Guid? SchoolyearID { get; set; }
- public string SchoolyearCode { get; set; }
- }
- }
|