using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// EndowmentOrder Data Structure.
///
[Serializable]
public class EndowmentOrder : AopObject
{
///
/// apply_amount:申购金额,以分为单位
///
[XmlElement("apply_amount")]
public string ApplyAmount { get; set; }
///
/// 订单id,订单的唯一标识,可以用来做幂等
///
[XmlElement("order_id")]
public string OrderId { get; set; }
///
/// pay_time:支付时间,格式:YYYYMMDDHHMISS
///
[XmlElement("pay_time")]
public string PayTime { get; set; }
///
/// ta_requestId:TA的唯一业务流水号
///
[XmlElement("ta_request_id")]
public string TaRequestId { get; set; }
}
}