1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class ScoreParameterSettingDictionaryView
- {
-
-
-
- public int? DictionaryCode { get; set; }
-
-
-
- public string DictionaryName { get; set; }
- public string Code { get; set; }
-
-
-
- public int? CourseType { get; set; }
-
-
-
- public int? OrderNo { get; set; }
- }
- }
|