using Muchinfo.MTPClient.Data.Helper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Muchinfo.MTPClient.Data.Enums
{
///
/// 交割单状态
///
public enum eDeliveryStatus
{
//Wait 0 等待
//Normal 1 正常
//Completed 2 完成
//Abnormal 3 异常
//PaymentDefault 4 含罚款
// NoConfirmGoods 5 未收到货申诉
// TradeFailure 6 成交失败
///
/// 等待
///
[ItemDisc("eDeliveryStatus_Wait")]
Wait = 0,
///
/// 正常
///
[ItemDisc("eDeliveryStatus_Normal")]
Normal = 1,
///
/// 完成
///
[ItemDisc("eDeliveryStatus_Completed")]
Completed = 2,
///
/// 异常
///
[ItemDisc("eDeliveryStatus_Abnormal")]
Abnormal = 3,
///
/// 含罚款
///
[ItemDisc("eDeliveryStatus_PaymentDefault")]
PaymentDefault = 4,
///
/// 未收到货申诉
///
[ItemDisc("eDeliveryStatus_NoConfirmGoods")]
NoConfirmGoods = 5,
///
/// 成交失败->持仓冻结失败
///
[ItemDisc("eDeliveryStatus_Trade_Failure")]
TradeFailure = 6,
///
/// 资金冻结失败
///
[ItemDisc("eDeliveryStatus_DETAIL_FREEZEMONEY_FAIL")]
DETAIL_FREEZEMONEY_FAIL = 7,
///
/// 已违约
///
[ItemDisc("eDeliveryStatus_DETAIL_TEAR_CONTRACT")]
DETAIL_TEAR_CONTRACT = 8,
}
}