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