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.
|
|
|
|
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 BookingTruckStatus
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 暂存
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("暂存")]
|
|
|
|
|
TEMP,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已提交
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已提交")]
|
|
|
|
|
SUBMITED,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已撤销
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已撤销")]
|
|
|
|
|
CANCELED,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已派车
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已派车")]
|
|
|
|
|
SEND_DISPATCH,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已撤销派车
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已撤销派车")]
|
|
|
|
|
CANCEL_DISPATCH
|
|
|
|
|
}
|
|
|
|
|
}
|