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