using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace EMIS.ViewModel.ChargeManage.ArrearsSituation { public class ChargeControlView { /// /// 登录控制 /// [DisplayName("登录控制")] public bool IsStudentChargeLoginLock { get; set; } /// /// 提示语(登录控制) /// [DisplayName("提示语")] public string StudentChargeLoginLockMessage { get; set; } /// /// 网上选课控制 /// [DisplayName("网上选课控制")] public bool IsStudentChargeSelectCourseLock { get; set; } /// /// 提示语(网上选课控制) /// [DisplayName("提示语")] public string StudentChargeSelectCourseMessage { get; set; } /// /// 成绩查询控制 /// [DisplayName("成绩查询控制")] public bool IsStudentChargeScoreLock { get; set; } /// /// 提示语(成绩查询控制) /// [DisplayName("提示语")] public string StudentChargeScoreLockMessage { get; set; } } }