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")] /// /// 企业编号 /// public string TenantId { get { return tenantId; } set { tenantId = value; } } #endregion #region schemeId 充值方案ID [JsonProperty(PropertyName = "schemeId")] /// /// 充值方案ID /// public string SchemeId { get { return schemeId; } set { schemeId = value; } } #endregion #region schemeNo 充值方案编号 [JsonProperty(PropertyName = "schemeNo")] /// /// 充值方案编号 /// public string SchemeNo { get { return schemeNo; } set { schemeNo = value; } } #endregion #region schemeName 充值方案名称 [JsonProperty(PropertyName = "schemeName")] /// /// 充值方案名称 /// public string SchemeName { get { return schemeName; } set { schemeName = value; } } #endregion #region maxGiftAmountValue 最高赠送金额额度 [JsonProperty(PropertyName = "maxGiftAmountValue")] /// /// 最高赠送金额额度 /// public decimal MaxGiftAmountValue { get { return maxGiftAmountValue; } set { maxGiftAmountValue = value; } } #endregion #region maxGiftPointValue 最高赠送积分额度 [JsonProperty(PropertyName = "maxGiftPointValue")] /// /// 最高赠送积分额度 /// public decimal MaxGiftPointValue { get { return maxGiftPointValue; } set { maxGiftPointValue = value; } } #endregion } }