using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OrderVO Data Structure.
///
[Serializable]
public class OrderVO : AopObject
{
///
/// 订单金额-单位为分
///
[XmlElement("apply_amount")]
public string ApplyAmount { get; set; }
///
/// 订单申请时间
///
[XmlElement("apply_date")]
public string ApplyDate { get; set; }
///
/// 交易来源传递的交易编号
///
[XmlElement("apply_no")]
public string ApplyNo { get; set; }
///
/// 币种
///
[XmlElement("ccy")]
public string Ccy { get; set; }
///
/// 订单生效时间
///
[XmlElement("effect_date")]
public string EffectDate { get; set; }
///
/// 扩展信息
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 订单到期时间
///
[XmlElement("repay_date")]
public string RepayDate { get; set; }
///
/// CREATE(投标中)/CANCEL(未中标)/VALID(中标)/PAYING(支付中)
///
[XmlElement("status")]
public string Status { get; set; }
}
}