using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ItemOrderVO Data Structure. /// [Serializable] public class ItemOrderVO : AopObject { /// /// 业务扩展信息,比如外部卡码,格式为json格式 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 商品单ID /// [XmlElement("item_order_no")] public string ItemOrderNo { get; set; } /// /// 分摊至商品上的商户出资金额 /// [XmlElement("merchant_fund")] public string MerchantFund { get; set; } /// /// 分摊至商品上的平台出资金额 /// [XmlElement("platform_fund")] public string PlatformFund { get; set; } /// /// 商品单价 /// [XmlElement("price")] public string Price { get; set; } /// /// 商品数量 /// [XmlElement("quantity")] public long Quantity { get; set; } /// /// 商品skuId /// [XmlElement("sku_id")] public string SkuId { get; set; } /// /// 商品单状态 /// [XmlElement("status")] public string Status { get; set; } } }