22 lines
417 B
C#
22 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Enums
|
|
{
|
|
///// <summary>
|
|
///// 用户类型
|
|
///// </summary>
|
|
//public enum UserTypeEnum
|
|
//{
|
|
// 学生 = 1,
|
|
// 教师 = 2,
|
|
// 助教 = 10,
|
|
// 管理员 = 15,
|
|
// 学习官 = 20,
|
|
// 其他 = 999,
|
|
//}
|
|
}
|