using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 统一收单-订单创建应答结果 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardTradeCreateVoucherNoResponse { /// /// 交易参考号 /// [JsonProperty(PropertyName = "tradeVoucherNo")] public string TradeVoucherNo { get; set; } /// /// 商户订单号(参数原封返回) /// [JsonProperty(PropertyName = "tradeNo")] public string TradeNo { get; set; } /// /// 订单总金额(参数原封返回) /// [JsonProperty(PropertyName = "totalAmount")] public decimal TotalAmount { get; set; } /// /// 优惠总金额(参数原封返回) /// [JsonProperty(PropertyName = "discountAmount")] public decimal DiscountAmount { get; set; } } }