36 lines
679 B
C#
36 lines
679 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.ComponentModel;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JY.Inspection.Enums
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 用户权限
|
||
|
|
/// </summary>
|
||
|
|
public enum EnumAutority
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 管理员
|
||
|
|
/// </summary>
|
||
|
|
[Description("管理员")]
|
||
|
|
Administrator = 1,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 工程师
|
||
|
|
/// </summary>
|
||
|
|
[Description("工程师")]
|
||
|
|
Engineer = 2,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 操作员
|
||
|
|
/// </summary>
|
||
|
|
[Description("操作员")]
|
||
|
|
Operator = 3,
|
||
|
|
|
||
|
|
None = 4
|
||
|
|
}
|
||
|
|
}
|