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.
29 lines
631 B
29 lines
631 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public enum PositionEnum
|
|
{
|
|
/// <summary>
|
|
/// 顶级职业
|
|
/// </summary>
|
|
[Description("顶级职业")] JobList = 0,
|
|
/// <summary>
|
|
/// 父级职业
|
|
/// </summary>
|
|
[Description("父级职业")] Subitem = 1,
|
|
/// <summary>
|
|
/// 子级职业
|
|
/// </summary>
|
|
[Description("子级职业")] Grandson = 2,
|
|
}
|
|
}
|