using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 卡积分变动查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardPointChangeRequest { /// /// 开始时间 /// [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; } /// /// 会员ID /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// /// 手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { 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; } = "x86"; } }