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.

70 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
/// <summary>
/// 获取积分兑换方案详情信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class PointExchangeSchemeDetailResponse
{
/// <summary>
/// 企业编号
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 兑换方案ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 兑换方案编号
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
/// <summary>
/// 兑换方案名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 兑换消耗积分值
/// </summary>
[JsonProperty(PropertyName = "pointValue")]
public string PointValue { get; set; }
/// <summary>
/// 兑换类型
/// </summary>
[JsonProperty(PropertyName = "type")]
public int Type { get; set; }
/// <summary>
/// 兑换价值
/// </summary>
[JsonProperty(PropertyName = "worth")]
public string Worth { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
/// <summary>
/// GIFT礼品信息
/// </summary>
[JsonProperty(PropertyName = "gifts")]
public List<PointExchangeSchemeDetailGift> Gifts { get; set; }
}
}