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; } } }