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.

87 lines
2.1 KiB
C#

9 months ago
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 MemberHistoryRecordResponse
{
/// <summary>
/// 企业编号
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { 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 = "shopNo")]
public string ShopNo { get; set; }
/// <summary>
/// 开户门店名称
/// </summary>
[JsonProperty(PropertyName = "shopName")]
public string ShopName { get; set; }
/// <summary>
/// 开户员工
/// </summary>
[JsonProperty(PropertyName = "workerNo")]
public string WorkerNo { get; set; }
/// <summary>
/// 业务单号
/// </summary>
[JsonProperty(PropertyName = "ticketNo")]
public string TicketNo { get; set; }
/// <summary>
/// 业务类型描述
/// </summary>
[JsonProperty(PropertyName = "typeCn")]
public string TypeCn { get; set; }
/// <summary>
/// 操作时间(yyyy-MM-dd HH:mm:ss)
/// </summary>
[JsonProperty(PropertyName = "operateTime")]
public string OperateTime { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
}
}