接口文件
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoMycarPromoTicketSyncModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayEcoMycarPromoTicketSyncModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 营销活动ID
|
||||
/// </summary>
|
||||
[JsonProperty("active_id")]
|
||||
public string ActiveId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 需要同步的卡券信息
|
||||
/// </summary>
|
||||
[JsonProperty("code_no_list")]
|
||||
|
||||
public List<CodeNOList> CodeNoList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 卡券来源
|
||||
/// </summary>
|
||||
[JsonProperty("source_type")]
|
||||
public string SourceType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user