1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMISOnline.Entities;
- namespace EMISOnline.ViewModel.Student
- {
- public class studentEducationMissionClassAddView : V_StudentEducationMissionClass
- {
- public studentEducationMissionClassAddView()
- {
- this.CorseStudyScoreModel = new CorseStudyScoreView();
- }
- public string yearCode { get; set; }
- public int years { get; set; }
- public CorseStudyScoreView CorseStudyScoreModel { get; set; }
- public string StudentCardNo { get; set; }
- public string StudentName { get; set; }
- }
- }
|