初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiTradeOrderConsultResponse.
/// </summary>
public class KoubeiTradeOrderConsultResponse : AopResponse
{
/// <summary>
/// 用户实付金额
/// </summary>
[JsonProperty("buyer_pay_amount")]
public string BuyerPayAmount { get; set; }
/// <summary>
/// 优惠信息
/// </summary>
[JsonProperty("discount_detail")]
public List<DiscountDetail> DiscountDetail { get; set; }
/// <summary>
/// 储值卡信息
/// </summary>
[JsonProperty("m_card_detail")]
public MCardDetail MCardDetail { get; set; }
/// <summary>
/// 请求中的request_id
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}