You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
525 B
32 lines
525 B
namespace Admin.NET.Core;
|
|
|
|
/// <summary>
|
|
/// 岗位状态枚举
|
|
/// </summary>
|
|
[Description("岗位状态枚举")]
|
|
public enum JobStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 在职
|
|
/// </summary>
|
|
[Description("在职")]
|
|
On = 1,
|
|
|
|
/// <summary>
|
|
/// 离职
|
|
/// </summary>
|
|
[Description("离职")]
|
|
Off = 2,
|
|
|
|
/// <summary>
|
|
/// 请假
|
|
/// </summary>
|
|
[Description("请假")]
|
|
Leave = 3,
|
|
|
|
/// <summary>
|
|
/// 其他
|
|
/// </summary>
|
|
[Description("其他")]
|
|
Other = 4,
|
|
}
|