34 lines
669 B
C#
34 lines
669 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 优先级
|
|||
|
/// </summary>
|
|||
|
public enum Priority
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 紧急程度最高
|
|||
|
/// </summary>
|
|||
|
[Description("紧急程度最高")]
|
|||
|
High=1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 中间
|
|||
|
/// </summary>
|
|||
|
[Description("中间")]
|
|||
|
Middle = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 不紧急
|
|||
|
/// </summary>
|
|||
|
[Description("不紧急")]
|
|||
|
Low = 3
|
|||
|
}
|
|||
|
}
|