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.
36 lines
701 B
36 lines
701 B
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
|
//
|
|
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
|
|
|
|
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,
|
|
}
|