32 lines
701 B
C#
32 lines
701 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|