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.
45 lines
1.2 KiB
45 lines
1.2 KiB
namespace Tiobon.Core.Model;
|
|
|
|
/// <summary>
|
|
/// 全局常量
|
|
/// </summary>
|
|
public class Consts
|
|
{
|
|
#region 考试管理-状态
|
|
/// <summary>
|
|
/// 考试管理-状态-草稿箱
|
|
/// </summary>
|
|
public const string DIC_EXAM_STATUS_DRAFT = "Draft";
|
|
/// <summary>
|
|
/// 考试管理-状态-已发布
|
|
/// </summary>
|
|
public const string DIC_EXAM_STATUS_RELEASED = "Released";
|
|
|
|
/// <summary>
|
|
/// 考试管理-状态-已归档
|
|
/// </summary>
|
|
public const string DIC_EXAM_STATUS_DISABLED = "Disabled";
|
|
#endregion
|
|
|
|
#region 考试管理-日期类型
|
|
/// <summary>
|
|
/// 考试管理-日期类型-考试区间
|
|
/// </summary>
|
|
public const string DIC_EXAM_DATE_TYPE_EXAM_DATE = "ExamDate";
|
|
/// <summary>
|
|
/// 考试管理-日期类型-学完多久
|
|
/// </summary>
|
|
public const string DIC_EXAM_DATE_TYPE_AFTERHOWLONG = "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
|
|
} |