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.

60 lines
1.6 KiB
C#

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