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.

49 lines
1.5 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV
{
/// <summary>
/// 合并卡号
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CardMergeResponse
{
private string memberId;// 会员Id
private string totalAmount;// 合并后金额
private string mobile;// 会员手机号
private string cardNo;// 会员卡号(合并后有效卡号)
/// <summary>
/// 会员Id
/// </summary>
[JsonProperty(PropertyName = "memberId")]
public string MemberId { get => memberId; set => memberId = value; }
/// <summary>
/// 合并后金额
/// </summary>
[JsonProperty(PropertyName = "totalAmount")]
public string TotalAmount { get => totalAmount; set => totalAmount = value; }
/// <summary>
/// 会员手机号
/// </summary>
[JsonProperty(PropertyName = "mobile")]
public string Mobile { get => mobile; set => mobile = value; }
/// <summary>
/// 会员卡号(合并后有效卡号)
/// </summary>
[JsonProperty(PropertyName = "cardNo")]
public string CardNo { get => cardNo; set => cardNo = value; }
/// <summary>
/// 积分
/// </summary>
[JsonProperty(PropertyName = "totalPoint")]
public string TotalPoint { get; set; }
}
}