123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- 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 string IsStudentChargeLoginDisplay { get; set; }
-
-
-
- [DisplayName("网上选课控制")]
- public bool IsStudentChargeSelectCourseLock { get; set; }
-
-
-
- [DisplayName("提示语")]
- public string StudentChargeSelectCourseMessage { get; set; }
-
-
-
- [DisplayName("是否显示")]
- public string IsStudentChargeSelectCourseDisplay { get; set; }
-
-
-
- [DisplayName("考试报名控制")]
- public bool IsStudentChargeExaminationApplyLock { get; set; }
-
-
-
- [DisplayName("提示语")]
- public string StudentChargeExaminationApplyMessage { get; set; }
-
-
-
- [DisplayName("是否显示")]
- public string IsStudentChargeExaminationApplyDisplay { get; set; }
-
-
-
- [DisplayName("课程成绩查询控制")]
- public bool IsStudentChargeScoreLock { get; set; }
-
-
-
- [DisplayName("提示语")]
- public string StudentChargeScoreLockMessage { get; set; }
-
-
-
- [DisplayName("是否显示")]
- public string IsStudentChargeScoreDisplay { get; set; }
-
-
-
- [DisplayName("等级成绩查询控制")]
- public bool IsStudentChargeLevelScoreLock { get; set; }
-
-
-
- [DisplayName("提示语")]
- public string StudentChargeLevelScoreMessage { get; set; }
-
-
-
- [DisplayName("是否显示")]
- public string IsStudentChargeLevelScoreDisplay { get; set; }
- }
- }
|