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.

120 lines
2.8 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Rechargefree
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class RechargeSchemeFreeResponse
{
//==================================private==================================
#region field
//企业编号
private string tenantId;
//充值方案ID
private string schemeId;
//充值方案编号
private string schemeNo;
//充值方案名称
private string schemeName;
//最高赠送金额额度
private decimal maxGiftAmountValue;
//最高赠送积分额度
private decimal maxGiftPointValue;
#endregion
//==================================public==================================
#region tenantId 企业编号
[JsonProperty(PropertyName = "tenantId")]
/// <summary>
/// 企业编号
/// <summary>
public string TenantId
{
get { return tenantId; }
set { tenantId = value; }
}
#endregion
#region schemeId 充值方案ID
[JsonProperty(PropertyName = "schemeId")]
/// <summary>
/// 充值方案ID
/// <summary>
public string SchemeId
{
get { return schemeId; }
set { schemeId = value; }
}
#endregion
#region schemeNo 充值方案编号
[JsonProperty(PropertyName = "schemeNo")]
/// <summary>
/// 充值方案编号
/// <summary>
public string SchemeNo
{
get { return schemeNo; }
set { schemeNo = value; }
}
#endregion
#region schemeName 充值方案名称
[JsonProperty(PropertyName = "schemeName")]
/// <summary>
/// 充值方案名称
/// <summary>
public string SchemeName
{
get { return schemeName; }
set { schemeName = value; }
}
#endregion
#region maxGiftAmountValue 最高赠送金额额度
[JsonProperty(PropertyName = "maxGiftAmountValue")]
/// <summary>
/// 最高赠送金额额度
/// <summary>
public decimal MaxGiftAmountValue
{
get { return maxGiftAmountValue; }
set { maxGiftAmountValue = value; }
}
#endregion
#region maxGiftPointValue 最高赠送积分额度
[JsonProperty(PropertyName = "maxGiftPointValue")]
/// <summary>
/// 最高赠送积分额度
/// <summary>
public decimal MaxGiftPointValue
{
get { return maxGiftPointValue; }
set { maxGiftPointValue = value; }
}
#endregion
}
}