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.

36 lines
917 B
C#

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 CardExchangeResponse
{
/// <summary>
/// 老卡号(如果是卡面号必须转换成会员系统规则号)
/// </summary>
[JsonProperty(PropertyName = "oldCardNo")]
public string OldCardNo { get; set; }
/// <summary>
/// 卡号(如果是卡面号必须转换成会员系统规则号)
/// </summary>
[JsonProperty(PropertyName = "newCardNo")]
public string NewCardNo { get; set; }
/// <summary>
/// 卡金额
/// </summary>
[JsonProperty(PropertyName = "totalAmount")]
public decimal TotalAmount { get; set; }
}
}