初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
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; }
}
}