using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员信息查询请求 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardInfoByMobileRequest { /// /// 查找属性名称(可选值:mebId-会员ID;cardNo-卡号;mobile-手机号码;scanCode-扫码;) /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } } }