NewGaoKaoApi/PaymentSDK/AliPay/Domain/ItemOrderOpenData.cs

97 lines
2.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ItemOrderOpenData Data Structure.
/// </summary>
[Serializable]
public class ItemOrderOpenData : AopObject
{
/// <summary>
/// 商品订单扩展信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 订单创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 订单修改时间
/// </summary>
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
/// <summary>
/// 商品ID
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[XmlElement("item_name")]
public string ItemName { get; set; }
/// <summary>
/// 商品订单ID
/// </summary>
[XmlElement("item_order_id")]
public string ItemOrderId { get; set; }
/// <summary>
/// 关联主订单ID
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商品数量
/// </summary>
[XmlElement("quantity")]
public long Quantity { get; set; }
/// <summary>
/// 实付金额;单位:分
/// </summary>
[XmlElement("real_amount")]
public long RealAmount { get; set; }
/// <summary>
/// 商品SKUID
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
/// <summary>
/// 商品快照ID
/// </summary>
[XmlElement("snapshot_id")]
public string SnapshotId { get; set; }
/// <summary>
/// 商品订单状态INIT(初始化)、WAIT_PAY(待支付)、PAID(已支付)、SUCCESS_FINISHED(已完结)、REFUNDED(已退款)、CLOSED(已关闭)
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 商户补贴金额;单位:分
/// </summary>
[XmlElement("subsidy_amount")]
public long SubsidyAmount { get; set; }
/// <summary>
/// 商品单价;单位:分
/// </summary>
[XmlElement("unit_price")]
public long UnitPrice { get; set; }
}
}