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