TODO 上传结果参数给MES
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JY.Model.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户权限
|
||||
/// </summary>
|
||||
public enum EnumAutority
|
||||
{
|
||||
/// <summary>
|
||||
/// 管理员
|
||||
/// </summary>
|
||||
[Description("管理员")]
|
||||
Administrator = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 工程师
|
||||
/// </summary>
|
||||
[Description("工程师")]
|
||||
Engineer = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 操作员
|
||||
/// </summary>
|
||||
[Description("操作员")]
|
||||
Operator = 3,
|
||||
|
||||
None = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user