You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
/// <summary>
/// 统一下单(卡支付明细)
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CardTradeCreateCardResponse
{
/// <summary>
/// 交易参考号
/// </summary>
[JsonProperty(PropertyName = "tradeVoucherNo")]
public string TradeVoucherNo { get; set; }
/// <summary>
/// 预支付编码
/// </summary>
[JsonProperty(PropertyName = "prepayment")]
public string PrePayment { get; set; }
/// <summary>
/// 商户订单号(参数原封返回)
/// </summary>
[JsonProperty(PropertyName = "tradeNo")]
public string TradeNo { get; set; }
/// <summary>
/// 卡号(参数原封返回)
/// </summary>
[JsonProperty(PropertyName = "cardNo")]
public string CardNo { get; set; }
/// <summary>
/// 刷卡金额(参数原封返回)
/// </summary>
[JsonProperty(PropertyName = "amount")]
public decimal Amount { get; set; }
}
}