using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiMallScanpurchaseTradeConsultModel Data Structure. /// [Serializable] public class KoubeiMallScanpurchaseTradeConsultModel : AopObject { /// /// 商品明细列表。注意:单品总金额不能大于订单金额 /// [XmlArray("goods_detail")] [XmlArrayItem("mall_goods_detail")] public List GoodsDetail { get; set; } /// /// 用于代表支付宝分配给商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 唯一请求id,开放者请确保每次请求的唯一性 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 订单总金额,单位元,精确到小数点后两位,取值范围[0.01,999999999] 如果同时传入了【不可打折金额】,【订单总金额】两者,则必须满足【不可打折金额】<=【订单总金额】 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 不可打折金额,单位为元,精确到小数点后两位,取值范围[0,999999999] 如果同时传入了【不可打折金额】、【订单总金额】,则必须满足【不可打折金额】<=【订单总金额】 /// [XmlElement("undiscountable_amount")] public string UndiscountableAmount { get; set; } /// /// 支付宝用户Id /// [XmlElement("user_id")] public string UserId { get; set; } } }