36 lines
761 B
C#
36 lines
761 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// InsMktCouponCmpgnBaseDTO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class InsMktCouponCmpgnBaseDTO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 活动id
|
|
/// </summary>
|
|
[JsonProperty("campaign_id")]
|
|
public string CampaignId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 权益类型
|
|
/// </summary>
|
|
[JsonProperty("coupon_type")]
|
|
public string CouponType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 权益盖帽值
|
|
/// </summary>
|
|
[JsonProperty("coupon_upper_value")]
|
|
public string CouponUpperValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 权益值
|
|
/// </summary>
|
|
[JsonProperty("coupon_value")]
|
|
public string CouponValue { get; set; }
|
|
}
|
|
} |