using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员密码修改应答结果 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardConsumeHistoryResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 批次号 /// [JsonProperty(PropertyName = "batchNo")] public string BatchNo { get; set; } /// /// 流水号 /// [JsonProperty(PropertyName = "serialNo")] public string SerialNo { get; set; } /// /// 交易参考号 /// [JsonProperty(PropertyName = "tradeVoucherNo")] public string TradeVoucherNo { get; set; } /// /// 商户订单号 /// [JsonProperty(PropertyName = "tradeNo")] public string TradeNo { get; set; } /// /// 支付凭证号 /// [JsonProperty(PropertyName = "payNo")] public string PayNo { get; set; } /// /// 订单标题 /// [JsonProperty(PropertyName = "subject")] public string Subject { get; set; } /// /// 商品简介 /// [JsonProperty(PropertyName = "goodsDesc")] public string GoodsDesc { get; set; } /// /// 刷卡金额 /// [JsonProperty(PropertyName = "actualAmount")] public Decimal ActualAmount { get; set; } /// /// 赠送积分 /// [JsonProperty(PropertyName = "giftPoint")] public Decimal GiftPoint { get; set; } /// /// 消费时间(yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "payDate")] public string PayDate { get; set; } /// /// 消费门店 /// [JsonProperty(PropertyName = "shopName")] public string ShopName { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "memo")] public string Memo { get; set; } } }