NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiTradeOrderAggregateCo...

55 lines
1.7 KiB
C#
Raw Permalink 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>
/// KoubeiTradeOrderAggregateConsultModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiTradeOrderAggregateConsultModel : AopObject
{
/// <summary>
/// 订单包含的商品列表信息json格式其它说明详见商品明细说明
/// </summary>
[XmlElement("goods_info")]
public KbGoodsInfo GoodsInfo { get; set; }
/// <summary>
/// 外部订单号,商户下必须保持唯一,控制幂等
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 口碑门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 订单标题,报送至支付宝或微信
/// </summary>
[XmlElement("subject")]
public string Subject { get; set; }
/// <summary>
/// 支付超时时间默认3m; 该笔订单允许的最晚付款时间逾期将关闭交易。取值范围1m15d。m-分钟h-小时d-天。 该参数数值不接受小数点, 如 1.5h,可转换为 90m
/// </summary>
[XmlElement("timeout_express")]
public string TimeoutExpress { get; set; }
/// <summary>
/// 订单金额
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
/// <summary>
/// 不可打折金额; 若不可打折金额等于订单金额,则屏蔽营销
/// </summary>
[XmlElement("un_discount_amount")]
public string UnDiscountAmount { get; set; }
}
}