using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV { /// /// 合并卡号 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardMergeResponse { private string memberId;// 会员Id private string totalAmount;// 合并后金额 private string mobile;// 会员手机号 private string cardNo;// 会员卡号(合并后有效卡号) /// /// 会员Id /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get => memberId; set => memberId = value; } /// /// 合并后金额 /// [JsonProperty(PropertyName = "totalAmount")] public string TotalAmount { get => totalAmount; set => totalAmount = value; } /// /// 会员手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get => mobile; set => mobile = value; } /// /// 会员卡号(合并后有效卡号) /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get => cardNo; set => cardNo = value; } /// /// 积分 /// [JsonProperty(PropertyName = "totalPoint")] public string TotalPoint { get; set; } } }