using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员信息列表查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MemberInfoListRequest { /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "startTime")] public string StartTime { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "endTime")] public string EndTime { get; set; } /// /// 页码 /// [JsonProperty(PropertyName = "pageNum")] public int PageNum { get; set; } /// /// 每页数据条数 /// [JsonProperty(PropertyName = "pageSize")] public int PageSize { get; set; } /// /// mobile||cardNo(根据手机号或会员卡号查询) /// [JsonProperty(PropertyName = "property")] public string Property { get; set; } /// /// 手机号或会员卡号 /// [JsonProperty(PropertyName = "keyword")] public string Keyword { 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; } } }