using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 换卡补卡 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardExchangeRequest { /// /// 老卡号 /// [JsonProperty(PropertyName = "oldCardNo")] public string OldCardNo { get; set; } /// /// 新卡号 /// [JsonProperty(PropertyName = "newCardNo")] public string NewCardNo { get; set; } /// /// 卡密码(DES加密) /// [JsonProperty(PropertyName = "password")] public string Password { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } /// /// 员工编号 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 终端标识(web、pos、wechat) /// [JsonProperty(PropertyName = "sourceSign")] public string SourceSign { get; set; } } }