初始提交
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// VoucherUserExternalTradeInfo Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class VoucherUserExternalTradeInfo : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 核销金额
|
||||
/// </summary>
|
||||
[JsonProperty("amount")]
|
||||
public string Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 核销时间
|
||||
/// </summary>
|
||||
[JsonProperty("consume_date")]
|
||||
public string ConsumeDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 券核销的门店id
|
||||
/// </summary>
|
||||
[JsonProperty("consume_shop_id")]
|
||||
public string ConsumeShopId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外部交易号
|
||||
/// </summary>
|
||||
[JsonProperty("external_trade_no")]
|
||||
public string ExternalTradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user