using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YuanXuan.IM.Common.Enums
{
///
/// 系统角色枚举
///
public enum SysRoleEnum
{
///
/// 超级管理员
///
[Description("超级管理员")]
SuperAdmin = 1,
///
/// 云校管理员
///
[Description("云校管理员")]
CloudSchoolAdmin = 2,
///
/// 运营管理员
///
OperationAdmin = 3,
///
/// 总部长
///
[Description("总部长")]
GeneralMinisterAdmin = 1000,
///
/// 部长
///
[Description("部长")]
MinisterAdmin = 1001,
///
/// 组长
///
[Description("组长")]
TeamLeader = 1002,
///
/// 学习官
///
[Description("学习官")]
LearningOfficer = 1003,
}
}