48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipayCommerceCityfacilitatorVoucherUploadModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlipayCommerceCityfacilitatorVoucherUploadModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 渠道商提供的其它信息
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("biz_info_ext")]
|
|||
|
|
public string BizInfoExt { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 城市标准码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("city_code")]
|
|||
|
|
public string CityCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// JSON字符串,包含出票的序列号,票号,出票时间,出票流水号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("exchange_ids")]
|
|||
|
|
public string ExchangeIds { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作时间
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("operate_time")]
|
|||
|
|
public string OperateTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 核销码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ticket_no")]
|
|||
|
|
public string TicketNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 支付宝交易号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("trade_no")]
|
|||
|
|
public string TradeNo { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|