namespace WeOnlineApp.Configuration { /// /// 问题状态 /// public class QuestionStateDefinition { /// /// 未解答 /// public const int New = 1; /// /// 已解答 /// public const int Answer = 2; } /// /// 答疑状态 /// public class AnswerStateDefinition { /// /// 未采纳 /// public const int New = 1; /// /// 已采纳 /// public const int Answer = 2; } /// /// 培训营状态 /// public class CampStateDefinition { /// /// 未激活 /// public const int New = 1; /// /// 已激活 /// public const int Active = 2; } /// /// 演练营状态 /// public class CampPlayStateDefinition { /// /// 新建 /// public const int New = 1; /// /// 运行中 /// public const int Run = 2; /// /// 超时结束 /// public const int OverTime = 8; /// /// 结束 /// public const int End = 9; } /// /// 演练参与者类型 /// public class CampPlayerTypeDefinition { /// /// 创建者 /// public const int Creator = 1; /// /// 参与成员 /// public const int Member = 2; } /// /// 演练模式 /// public class CampPlayModelDefinition { /// /// 单人 /// public const int Single = 1; /// /// 团队 /// public const int Team = 2; } /// /// 演练参与者状态 /// public class CampPlayUserStateDefinition { /// /// 准备中 /// public const int New = 1; /// /// 已准备 /// public const int Ready = 2; /// /// 取消准备 /// public const int CancelReady = 3; /// /// 运行中 /// public const int Run = 4; /// /// 退出 /// public const int Exit = 8; /// /// 结束 /// public const int End = 9; } /// /// 日志命令 /// public class LogCommandDefinition { public const string Start = "开始演练"; public const string End = "结束演练"; public const string NextRound = "下一轮次"; public const string NextNode = "下一节点"; public const string ConfirmScore = "确认评分"; public const string SendScore = "发送评分"; public const string SceneOperation = "角色处置情景"; public const string SceneOperationCmd = "下达处置情景命令"; public const string OperationComment = "处置情景评论"; public const string Warning = "告警信息"; public const string Chat = "聊天信息"; } /// /// 日志类型 /// public class LogTypeDefinition { public const int System = 1; public const int SceneOperation = 2; public const int Warning = 3; public const int Comment = 4; } /// /// 日志状态 /// public class LogStateDefinition { /// /// 其他 /// public const int Other = 0; /// /// 新处置 /// public const int New = 1; /// /// 当前阶段处置已下达 /// public const int Submit = 2; /// /// 处置已下达 /// public const int Send = 3; /// /// 处置未下达 /// public const int NotSend = 4; /// /// 处置匹配成功 /// public const int HasMatch = 5; } public class SystemSettingTypeDefinition { /// /// 系统内部配置 /// public const int System = 0; /// /// 租户配置(用户可更改) /// public const int Tenant = 1; /// /// 用户配置(用户可更改) /// public const int User = 2; } /// /// 用户角色类型 /// public class UsersAndRolesTypeDefinition { /// /// 超级用户 /// public const int Supper = 0; /// /// 系统用户 /// public const int System = 1; /// /// 高级用户 /// public const int Advanced = 2; /// /// 普通用户 /// public const int Ordinary = 3; } /// /// 用户账号类型 /// public class AccountTypeDefinition { /// /// 系统账号 /// public const int System = 1; /// /// 学员账号 /// public const int Student = 2; } /// /// 用户账号类型 /// public class GenderTypeDefinition { /// /// 男 /// public const int Man = 1; /// /// 女 /// public const int Women = 2; } /// /// 是否多语言 /// public class MultiLanguagesDefinition { /// /// 多语言 /// public const string Multi = "Y"; /// /// 单语言 /// public const string Single = "N"; } /// /// 功能菜单类型 /// public class FunctionTypeDefinition { /// /// 目录 /// public const int Catalog = 1; /// /// 菜单 /// public const int Menu = 2; /// /// 按钮 /// public const int Button = 3; /// /// 不显示 /// public const int NotShow = 9; } }