32 lines
638 B
C#
32 lines
638 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 ToolObjectType
|
|
{
|
|
/// <summary>
|
|
/// 学校
|
|
/// </summary>
|
|
[EnumDescription("学校")]
|
|
School = 1,
|
|
/// <summary>
|
|
/// 教师
|
|
/// </summary>
|
|
[EnumDescription("教师")]
|
|
Teacher = 2,
|
|
/// <summary>
|
|
/// 学生
|
|
/// </summary>
|
|
[EnumDescription("学生")]
|
|
Student = 3
|
|
|
|
}
|
|
}
|