You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

92 lines
2.2 KiB

namespace Tiobon.Core.Model;
/// <summary>
/// 全局常量
/// </summary>
public class Consts
{
#region 考试管理-状态
/// <summary>
/// 考试管理-状态
/// </summary>
public static class DicExamStatus
{
/// <summary>
/// 草稿箱
/// </summary>
public const string DRAFT = "Draft";
/// <summary>
/// 已发布
/// </summary>
public const string RELEASED = "Released";
/// <summary>
/// 已归档
/// </summary>
public const string DISABLED = "Disabled";
}
#endregion
#region 考试管理-日期类型
/// <summary>
/// 考试管理-日期类型
/// </summary>
public static class DicExamDateType
{
/// <summary>
/// 时间区间
/// </summary>
public const string EXAM_DATE = "ExamDate";
/// <summary>
/// 学完多久
/// </summary>
public const string AFTER_HOW_LONG = "AfterHowLong";
}
#endregion
#region 考试管理-关联类型
/// <summary>
/// 考试管理-关联类型-課程
/// </summary>
public const string DIC_EXAM_LINK_TYPE_COURSE = "CourseId";
/// <summary>
/// 考试管理-关联类型-場景
/// </summary>
public const string DIC_EXAM_DATE_TYPE_COURSE_SCENE = "CourseSceneId";
#endregion
#region 培训记录-课程状态
/// <summary>
/// 培训记录-课程状态-进行中
/// </summary>
public const string DIC_STUDY_RECORD_COURSE_STATUS_IN = "In";
/// <summary>
/// 培训记录-课程状态-已结束
/// </summary>
public const string DIC_STUDY_RECORD_COURSE_STATUS_OVER = "Over";
#endregion
#region 培训记录-学习状态
/// <summary>
/// 培训记录-学习状态-未参与
/// </summary>
public const string DIC_STUDY_RECORD_STUDY_STATUS_NO_JOIN = "NoJoin";
/// <summary>
/// 培训记录-学习状态-未完成
/// </summary>
public const string DIC_STUDY_RECORD_STUDY_STATUS_FINISH = "NoFinish";
/// <summary>
/// 培训记录-学习状态-已完成
/// </summary>
public const string DIC_STUDY_RECORD_STUDY_STATUS_HAS_FINISH = "HasFinish";
#endregion
}