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.

62 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class SaleGiftCardRecordResponse
{
/// <summary>
/// 销售单号
/// </summary>
[JsonProperty(PropertyName = "ticketNo")]
public string TicketNo { get; set; }
/// <summary>
/// 礼品卡方案ID
/// </summary>
[JsonProperty(PropertyName = "schemeId")]
public string SchemeId { get; set; }
/// <summary>
/// 礼品卡方案编号
/// </summary>
[JsonProperty(PropertyName = "schemeNo")]
public string SchemeNo { get; set; }
/// <summary>
/// 礼品卡方案名称
/// </summary>
[JsonProperty(PropertyName = "schemeName")]
public string SchemeName { get; set; }
/// <summary>
/// 卡号
/// </summary>
[JsonProperty(PropertyName = "cardNo")]
public string CardNo { get; set; }
/// <summary>
/// 礼品卡面额
/// </summary>
[JsonProperty(PropertyName = "faceValue")]
public decimal FaceValue { get; set; }
/// <summary>
/// 礼品卡建议零售价
/// </summary>
[JsonProperty(PropertyName = "retailPrice")]
public decimal RetailPrice { get; set; }
/// <summary>
/// 礼品卡真实余额
/// </summary>
[JsonProperty(PropertyName = "realAmount")]
public decimal RealAmount { get; set; }
}
}