using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 卡金额变动查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardAmountChangeRequest { /// /// 查找属性名称(可选值:mebId-会员ID;cardNo-卡号;mobile-手机号码;scanCode-扫码;) /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { 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; } /// /// 门店编号 /// [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"; } }