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.

49 lines
1.1 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Card
{
/// <summary>
/// CouponDetail属性说明
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CardRechargeCoupon
{
/// <summary>
/// 券类型(DISCOUNT-折扣券 CASH-代金券)
/// </summary>
[JsonProperty(PropertyName = "couponType")]
public string CouponType { get; set; }
/// <summary>
/// 卡券号码(多个以,分割)
/// </summary>
[JsonProperty(PropertyName = "codes")]
public string Codes { get; set; }
/// <summary>
/// 券标题
/// </summary>
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
/// <summary>
/// 券描述
/// </summary>
[JsonProperty(PropertyName = "couponDesc")]
public string CouponDesc { get; set; }
/// <summary>
/// 赠送数量
/// </summary>
[JsonProperty(PropertyName = "num")]
public int Num { get; set; }
}
}