using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 充值查询返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeQueryResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 充值单号(卡系统业务) /// [JsonProperty(PropertyName = "rechargeNo")] public string RechargeNo { get; set; } /// /// 商户支付凭证号 /// [JsonProperty(PropertyName = "payVoucherNo")] public string PayVoucherNo { get; set; } /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 充值方案编号 /// [JsonProperty(PropertyName = "schemeNo")] public string SchemeNo { get; set; } /// /// 充值方案名称 /// [JsonProperty(PropertyName = "schemeName")] public string SchemeName { get; set; } /// /// 充值前余额 /// [JsonProperty(PropertyName = "preAmount")] public decimal PreAmount { get; set; } /// /// 充值余额(实收金额) /// [JsonProperty(PropertyName = "chargeAmount")] public decimal ChargeAmount { get; set; } /// /// 赠送金额 /// [JsonProperty(PropertyName = "giftAmount")] public decimal GiftAmount { get; set; } /// /// 本次充值总金额 /// [JsonProperty(PropertyName = "totalChargeAmount")] public decimal TotalChargeAmount { get; set; } /// /// 充值后余额 /// [JsonProperty(PropertyName = "aftAmount")] public decimal AftAmount { get; set; } /// /// 充值前积分 /// [JsonProperty(PropertyName = "prePoint")] public decimal PrePoint { get; set; } /// /// 本次赠送积分 /// [JsonProperty(PropertyName = "giftPoint")] public decimal GiftPoint { get; set; } /// /// 充值后积分 /// [JsonProperty(PropertyName = "aftPoint")] public decimal AftPoint { get; set; } /// /// 交易时间(格式:yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "operateTime")] public string OperateTime { get; set; } /// /// 充值后积分(精确到分) /// [JsonProperty(PropertyName = "memo")] public string Memo { get; set; } /// /// 赠送礼品明细 /// [JsonProperty(PropertyName = "gifts")] public List Gifts { get; set; } /// /// 是否赠送礼品标识(0-否 1-是) /// [JsonProperty(PropertyName = "coupons")] public List Coupons { get; set; } } }