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";
///
/// 手动选修
///
public const string MANUAL_ELECTIVE = "ManualElective";
}
#endregion
#region 考试管理-学习完成标准
///
/// 考试管理-学习完成标准
///
public static class DIC_EXAM_STUDY_FINISHED_RULE
{
///
/// 学习完成+考试合格
///
public const string EXAM_PASS = "ExamPass";
///
/// 学习完成
///
public const string STUDY_FINISHED = "StudyFinished";
///
/// 不学习但考试合格
///
public const string NO_STUDY_EXAM_PASS = "NoStudyExamPass";
}
#endregion
#endregion
#region 必选修规则
///
/// 培训规则种类
///
public static class DIC_TRAINING_STUDY_RULE_TRAIN_TYPE
{
///
/// 岗前培训
///
public const string PreWork = "PreWork";
///
/// 新人培训
///
public const string NewStaff = "NewStaff";
///
/// 部门培训
///
public const string Dept = "Dept";
///
/// 岗位培训
///
public const string Job = "Job";
///
/// 年度培训
///
public const string Year = "Year";
///
/// 职称培训
///
public const string Title = "Title";
///
/// 职等培训
///
public const string Grade = "Grade";
///
/// 定向培训
///
public const string Orientation = "Orientation";
}
#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 培训记录-完成状态
///
/// 培训记录-完成状态
///
public static class DIC_STUDY_RECORD_STUDY_COMPLETE_STATUS
{
///
/// 已完成
///
public const string FINISHED = "Finished";
///
/// 未完成
///
public const string NO_FINISH = "NoFinish";
}
#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
#region 需求维护
///
/// 考试记录-状态
///
public static class DIC_REQUEST_STATUS
{
///
/// 需求维护
///
public const string Wait = "Wait";
///
/// 需求暂存
///
public const string Temporary = "Temporary";
///
/// 需求待确认
///
public const string WaitConfirm = "WaitConfirm";
///
/// 全部需求
///
public const string Active = "Active";
///
/// 已作废
///
public const string Disable = "Disable";
}
#endregion
#region 面试工单
///
/// 面试工单-状态
///
public static class DIC_INTERVIEW_ORDER_STATUS
{
///
/// 待推荐
///
public const string WaitRecommended = "WaitRecommended";
///
/// 已推荐
///
public const string HasRecommended = "HasRecommended";
///
/// 待预约
///
public const string WaitAppointment = "WaitAppointment";
///
/// 待面试
///
public const string WaitInterview = "WaitInterview";
///
/// 面试取消(系统)
///
public const string SystemCancelInterview = "SystemCancelInterview";
///
/// 已面试
///
public const string HasInterview = "HasInterview";
///
/// 待发offer
///
public const string WaitSendOffer = "WaitSendOffer";
///
/// 已发offer
///
public const string HasSendOffer = "HasSendOffer";
///
/// 已录用
///
public const string HasOffer = "HasOffer";
///
/// 面试结束
///
public const string End = "End";
///
/// 不合适
///
public const string Fail = "Fail";
///
/// 面试不通过
///
public const string InterviewFail = "InterviewFail";
///
/// 人才库
///
public const string Talent_Pool = "Talent_Pool";
///
/// 回收站
///
public const string Recycled = "Recycled";
///
/// 黑名单
///
public const string Blacklist = "Blacklist";
///
/// 已改期
///
public const string HasChangeDate = "HasChangeDate";
///
/// 取消
///
public const string Cancel = "Cancel";
///
/// 已逾期
///
public const string Expire = "Expire";
}
#endregion
}