using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info
{
public enum EPriority
{
///
/// 紧急
///
[Description("紧急")]
Urgent =1,
///
/// 普通
///
[Description("普通")]
NotUrgent = 0,
}
}