27 lines
510 B
C#
27 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Entity.Enum
|
|
{
|
|
/// <summary>
|
|
/// 教师状态
|
|
/// </summary>
|
|
public enum TeacherStatus
|
|
{
|
|
/// <summary>
|
|
/// 在职
|
|
/// </summary>
|
|
[Description("在职")]
|
|
Normal = 1,
|
|
/// <summary>
|
|
/// 离职
|
|
/// </summary>
|
|
[Description("离职")]
|
|
Depart = 2
|
|
}
|
|
}
|