using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PointExchangeDetailRequest { /// /// 开始时间 /// [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; } /// /// 会员Id /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// /// 手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get; set; } /// /// Pos编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } /// /// 组别id /// [JsonProperty(PropertyName = "groupId")] public string GroupId { get; set; } } }