29 lines
612 B
C#
29 lines
612 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Enums
|
|
{
|
|
public enum ToolClassType
|
|
{
|
|
/// <summary>
|
|
/// 普通本科
|
|
/// </summary>
|
|
[EnumDescription("本科班")]
|
|
NormalUndergraduate = 1,
|
|
/// <summary>
|
|
/// 重点本科
|
|
/// </summary>
|
|
[EnumDescription("重本班")]
|
|
KeyPointsUndergraduate = 2,
|
|
|
|
/// <summary>
|
|
/// 全部
|
|
/// </summary>
|
|
[EnumDescription("全适用")]
|
|
All = 3
|
|
}
|
|
}
|