using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { /// /// GiftAmountBatch(充值赠送金额批次明细)说明 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeSchemeGiftAmountBatch { /// /// 赠送信息ID(唯一标识) /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 余额类型编号 /// [JsonProperty(PropertyName = "amountTypeNo")] public decimal AmountTypeNo { get; set; } /// /// 余额类型名称 /// [JsonProperty(PropertyName = "amountTypeName")] public string AmountTypeName { get; set; } /// /// 批次号 /// [JsonProperty(PropertyName = "batchNo")] public int BatchNo { get; set; } /// /// 天数(几天后发放,0立即发放) /// [JsonProperty(PropertyName = "days")] public int Days { get; set; } /// /// 比例(该批次明细发放金额为 总金额 * (比例 / 总期数)) /// [JsonProperty(PropertyName = "rate")] public int Rate { get; set; } /// /// 总期数 /// [JsonProperty(PropertyName = "total")] public int Total { get; set; } } }