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.

48 lines
1.1 KiB
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 CardAccountDestroyResponse
{
/// <summary>
/// 卡号
/// </summary>
[JsonProperty(PropertyName = "cardNo")]
public string CardNo { get; set; }
/// <summary>
/// 全局余额
/// </summary>
[JsonProperty(PropertyName = "globalAmount")]
public decimal GlobalAmount { get; set; }
/// <summary>
/// 赠送余额
/// </summary>
[JsonProperty(PropertyName = "giftAmount")]
public decimal GiftAmount { get; set; }
/// <summary>
/// 扣款金额
/// </summary>
[JsonProperty(PropertyName = "debitMoney")]
public decimal DebitMoney { get; set; }
/// <summary>
/// 退款金额
/// </summary>
[JsonProperty(PropertyName = "refundMoney")]
public decimal RefundMoney { get; set; }
}
}