using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 预甩货调度状态枚举 /// public enum RollingNominationDispatchStatusEnum { /// /// 待确认 /// [Description("待确认")] WAIT, /// /// 已完成 /// [Description("已完成")] COMPLETE, /// /// 已取消 /// [Description("已取消")] CANCEL, /// /// 失效 /// [Description("失效")] EXPIRE } }