using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员操作记录查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MemberHistoryRecordResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 会员手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get; set; } /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 卡面号 /// [JsonProperty(PropertyName = "cardFaceNo")] public string CardFaceNo { get; set; } /// /// 开户门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 开户门店名称 /// [JsonProperty(PropertyName = "shopName")] public string ShopName { get; set; } /// /// 开户员工 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 业务单号 /// [JsonProperty(PropertyName = "ticketNo")] public string TicketNo { get; set; } /// /// 业务类型描述 /// [JsonProperty(PropertyName = "typeCn")] public string TypeCn { get; set; } /// /// 操作时间(yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "operateTime")] public string OperateTime { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }