using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 校验卡号、密码是否正确,并返回相关基础信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardValidRequest { /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 卡密码(DES加密) /// [JsonProperty(PropertyName = "passwd")] public string Passwd { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } } }