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.

53 lines
1.4 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Card
{
/// <summary>
/// Detail(充值方案明细信息)说明
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CardRechargeSchemeDetail
{
/// <summary>
/// 明细ID(唯一标识)
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 起始金额
/// </summary>
[JsonProperty(PropertyName = "startAmount")]
public decimal StartAmount { get; set; }
/// <summary>
/// 金额赠送类型(0-按比例;1-固定值;)
/// </summary>
[JsonProperty(PropertyName = "giftAmountType")]
public int GiftAmountType { get; set; }
/// <summary>
/// 金额赠送值
/// </summary>
[JsonProperty(PropertyName = "giftAmountValue")]
public decimal GiftAmountValue { get; set; }
/// <summary>
/// 积分赠送类型(0按比例;1固定值;)
/// </summary>
[JsonProperty(PropertyName = "giftPointType")]
public int GiftPointType { get; set; }
/// <summary>
/// 积分赠送值
/// </summary>
[JsonProperty(PropertyName = "giftPointValue")]
public decimal GiftPointValue { get; set; }
}
}