You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
791 B
C#
40 lines
791 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 预甩货调度状态枚举
|
|
/// </summary>
|
|
public enum RollingNominationDispatchStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 待确认
|
|
/// </summary>
|
|
[Description("待确认")]
|
|
WAIT,
|
|
|
|
/// <summary>
|
|
/// 已完成
|
|
/// </summary>
|
|
[Description("已完成")]
|
|
COMPLETE,
|
|
|
|
/// <summary>
|
|
/// 已取消
|
|
/// </summary>
|
|
[Description("已取消")]
|
|
CANCEL,
|
|
|
|
/// <summary>
|
|
/// 失效
|
|
/// </summary>
|
|
[Description("失效")]
|
|
EXPIRE
|
|
}
|
|
}
|