using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 充值方案列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeSchemeListResponse { /// /// 卡类型ID /// [JsonProperty(PropertyName = "cardTypeId")] public string CardTypeId { get; set; } /// /// 卡类型编号 /// [JsonProperty(PropertyName = "cardTypeNo")] public string CardTypeNo { get; set; } /// /// 卡类型名称 /// [JsonProperty(PropertyName = "cardTypeName")] public string CardTypeName { get; set; } /// /// 充值方案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 = "minAmount")] public decimal MinAmount { get; set; } /// /// 最高充值额度(值为0时表示不限制该金额) /// [JsonProperty(PropertyName = "maxAmount")] public decimal MaxAmount { get; set; } /// /// 除数值 /// [JsonProperty(PropertyName = "divisor")] public int Divisor { get; set; } /// /// 是否手动录入金额(0-否 1-是) /// [JsonProperty(PropertyName = "inputFlag")] public decimal InputFlag { get; set; } /// /// 充值标签 /// [JsonProperty(PropertyName = "tags")] public string Tgs { get; set; } /// /// 是否赠送(0-否 1-是) /// [JsonProperty(PropertyName = "giftDetailFlag")] public int GiftDetailFlag { get; set; } /// /// 是否赠送礼品标识(0-否 1-是) /// [JsonProperty(PropertyName = "giftFlag")] public int GiftFlag { get; set; } /// /// 是否赠送电子券标识(0-否 1-是) /// [JsonProperty(PropertyName = "couponFlag")] public int CouponFlag { get; set; } /// /// 充值金额是否分期(0-否 1-是) /// [JsonProperty(PropertyName = "amountBatchFlag")] public int AmountBatchFlag { get; set; } /// /// 赠送金额是否分期(0-否 1-是) /// [JsonProperty(PropertyName = "giftAmountBatchFlag")] public int GiftAmountBatchFlag { get; set; } /// /// 优惠说明 /// [JsonProperty(PropertyName = "discountDesc")] public string DiscountDesc { get; set; } /// /// 充值方案备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 充值方案明细信息列表 /// [JsonProperty(PropertyName = "detail")] public List Detail { get; set; } /// /// 充值方案赠送礼品信息列表 /// [JsonProperty(PropertyName = "gift")] public List Gift { get; set; } /// /// 充值方案赠送券信息列表 /// [JsonProperty(PropertyName = "coupon")] public List Coupon { get; set; } /// /// 充值金额批次列表 /// [JsonProperty(PropertyName = "amountBatch")] public List AmountBatch { get; set; } /// /// 赠送金额批次列表 /// [JsonProperty(PropertyName = "giftAmountBatch")] public List GiftAmountBatch { get; set; } } }