You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

207 lines
5.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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