永遠都不要忘記為誰而努力奮鬥
阿新 • • 發佈:2019-01-25
// 摘要:
// 訂單狀態
public enum OrderState
{
// 摘要:
// 不限制
All = 0,
//
// 摘要:
// 待付款
UnPaid = 1,
//
// 摘要:
// 已取消
Cancel = 2,
//
// 摘要:
// 待確認
Process = 3,
//
// 摘要:
// 預定成功
ReserveSuccess = 4,
//
// 摘要:
// 預定失敗
ReserveFailed = 5,
//
// 摘要:
// 配送中
Dispatching = 6,
//
// 摘要:
// 配送失敗
Failed = 7,
//
// 摘要:
// 配送完成
Completed = 8,
//
// 摘要:
// 訂單關閉
Closed = 9,
//
// 摘要:
// 訂單過期
// 訂單狀態
public enum OrderState
{
// 摘要:
// 不限制
All = 0,
//
// 摘要:
// 待付款
UnPaid = 1,
//
// 摘要:
// 已取消
Cancel = 2,
//
// 摘要:
// 待確認
Process = 3,
//
// 摘要:
// 預定成功
ReserveSuccess = 4,
//
// 摘要:
// 預定失敗
ReserveFailed = 5,
//
// 摘要:
// 配送中
Dispatching = 6,
//
// 摘要:
// 配送失敗
Failed = 7,
//
// 摘要:
// 配送完成
Completed = 8,
//
// 摘要:
// 訂單關閉
Closed = 9,
//
// 摘要:
// 訂單過期