using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.OutboundOrder
{
public enum OutboundOrderEnum
{
///
/// 新建订单
///
[Description("新建订单")]
NewBound = 1,
///
/// 订单执行中
///
[Description("订单执行中")]
Execute = 2,
///
/// 订单以完成
///
[Description("订单以完成")]
Accomplish = 3,
}
}