using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员信息列表查询响应对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MemberInfoListResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 会员ID /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// /// 会员名称 /// [JsonProperty(PropertyName = "name")] public string Name { 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 = "totalAmount")] public decimal TotalAmount { get; set; } /// /// 总积分 /// [JsonProperty(PropertyName = "totalPoint")] public decimal TotalPoint { get; set; } /// /// 卡类型ID /// [JsonProperty(PropertyName = "cardTypeId")] public string CardTypeId { get; set; } /// /// 卡类型编号 /// [JsonProperty(PropertyName = "cardTypeNo")] public string CardTypeNo { get; set; } /// /// 卡类型名称 /// [JsonProperty(PropertyName = "cardTypeName")] public string CardTypeName { get; set; } /// /// 开户门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 开户门店名称 /// [JsonProperty(PropertyName = "shopName")] public string ShopName { get; set; } /// /// pos号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } /// /// 开户员工 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 联系电话 /// [JsonProperty(PropertyName = "linkphone")] public string Linkphone { get; set; } /// /// 生日(yyyy-MM-dd) /// [JsonProperty(PropertyName = "birthday")] public string Birthday { get; set; } /// /// 性别(0-女 1-男) /// [JsonProperty(PropertyName = "sex")] public string Sex { get; set; } /// /// 电子邮箱 /// [JsonProperty(PropertyName = "email")] public string Email { get; set; } /// /// QQ /// [JsonProperty(PropertyName = "qq")] public string Qq { get; set; } /// /// 家庭地址 /// [JsonProperty(PropertyName = "address")] public string Address { get; set; } /// /// 会员类型编号 /// [JsonProperty(PropertyName = "memberTypeNo")] public string MemberTypeNo { get; set; } /// /// 会员类型名称 /// [JsonProperty(PropertyName = "memberTypeName")] public string MemberTypeName { get; set; } /// /// 会员等级编号 /// [JsonProperty(PropertyName = "memberLevelNo")] public string MemberLevelNo { get; set; } /// /// 会员等级名称 /// [JsonProperty(PropertyName = "memberLevelName")] public string MemberLevelName { get; set; } /// /// 来源编号 /// [JsonProperty(PropertyName = "sourceNo")] public string SourceNo { get; set; } /// /// 来源名称 /// [JsonProperty(PropertyName = "sourceName")] public string SourceName { get; set; } /// /// 证件类型编号 /// [JsonProperty(PropertyName = "creTypeNo")] public string CreTypeNo { get; set; } /// /// 证件类型名称 /// [JsonProperty(PropertyName = "creTypeName")] public string CreTypeName { get; set; } /// /// 证件号 /// [JsonProperty(PropertyName = "creNo")] public string CreNo { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }