namespace Tiobon.Core.Model; /// /// 全局常量 /// public class Consts { #region 课程管理 /// /// 课程管理-状态 /// public static class DIC_COURSE_STATUS { /// /// 草稿箱 /// public const string DRAFT = "Draft"; /// /// 已发布 /// public const string RELEASED = "Released"; /// /// 已停用 /// public const string DISABLED = "Disabled"; } #endregion #region 试卷管理 /// /// 试卷管理-状态 /// public static class DIC_EXAM_PAPER_STATUS { /// /// 草稿箱 /// public const string DRAFT = "Draft"; /// /// 已发布 /// public const string RELEASED = "Released"; /// /// 已停用 /// public const string DISABLED = "Disabled"; } /// /// 试卷管理-出题方式 /// public static class DIC_EXAM_PAPER_SET_METHOD { /// /// 人工出题 /// public const string MANUAL = "manual"; /// /// 随机出题 /// public const string RANDOM = "random"; } /// /// 试卷管理-评分方式 /// public static class DIC_EXAM_PAPER_SCORE_METHOD { /// /// 手动评分 /// public const string MANUAL = "Manual"; /// /// 系统评分 /// public const string SYSTEM = "System"; } #endregion #region 考试管理 #region 考试管理-状态 /// /// 考试管理-状态 /// public static class DIC_EXAM_STATUS { /// /// 草稿箱 /// public const string DRAFT = "Draft"; /// /// 已发布 /// public const string RELEASED = "Released"; /// /// 已归档 /// public const string DISABLED = "Disabled"; } #endregion #region 考试管理-日期类型 /// /// 考试管理-日期类型 /// public static class DicExamDateType { /// /// 时间区间 /// public const string EXAM_DATE = "ExamDate"; /// /// 学完多久 /// public const string AFTER_HOW_LONG = "AfterHowLong"; } #endregion #region 考试管理-关联类型 /// /// 考试管理-关联类型-課程 /// public const string DIC_EXAM_LINK_TYPE_COURSE = "CourseId"; /// /// 考试管理-关联类型-場景 /// public const string DIC_EXAM_DATE_TYPE_COURSE_SCENE = "CourseSceneId"; #endregion #region 考试管理-人员来源 /// /// 考试管理-人员来源 /// public static class DIC_EXAM_STAFF_SOURCE { /// /// 手动必修 /// public const string MANUAL_REQUIRED = "ManualRequired"; /// /// 必修规则 /// public const string STUDY_RULE_REQUIRED = "StudyRuleRequired"; } #endregion #endregion #region 培训记录-课程状态 /// /// 培训记录-课程状态-进行中 /// public const string DIC_STUDY_RECORD_COURSE_STATUS_IN = "In"; /// /// 培训记录-课程状态-已结束 /// public const string DIC_STUDY_RECORD_COURSE_STATUS_OVER = "Over"; #endregion #region 培训记录-学习状态 /// /// 培训记录-学习状态 /// public static class DIC_STUDY_RECORD_STUDY_STATUS { /// /// 未参与 /// public const string NO_JOIN = "NoJoin"; /// /// 未完成 /// public const string NO_FINISH = "NoFinish"; /// /// 已完成 /// public const string HAS_FINISH = "HasFinish"; } #endregion #region 考试记录 #region 考试记录-状态 /// /// 考试记录-状态 /// public static class DIC_EXAM_RECORD_STATUS { /// /// 待考试 /// public const string WAIT = "Wait"; /// /// 考试中 /// public const string EXAMING = "Examing"; /// /// 考试结束 /// public const string EXAM_END = "ExamEnd"; /// /// 缺考系统结束 /// public const string SYSTEM_END = "SystemEnd"; } #endregion #region 考试记录-评分状态 /// /// 考试记录-评分状态 /// public static class DIC_EXAM_RECORD_SCORE_STATUS { /// /// 评分 /// public const string NO_SCORE = "NoScore"; /// /// 已评分 /// public const string HAS_SCORE = "HasScore"; } #endregion #endregion }