using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 换卡补卡 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardExchangeResponse { /// /// 老卡号(如果是卡面号必须转换成会员系统规则号) /// [JsonProperty(PropertyName = "oldCardNo")] public string OldCardNo { get; set; } /// /// 卡号(如果是卡面号必须转换成会员系统规则号) /// [JsonProperty(PropertyName = "newCardNo")] public string NewCardNo { get; set; } /// /// 卡金额 /// [JsonProperty(PropertyName = "totalAmount")] public decimal TotalAmount { get; set; } } }