18 lines
472 B
C#
18 lines
472 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayTradeAppMergePayModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayTradeAppMergePayModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 如果预创建成功,支付宝返回该预下单号,后续商户使用该预下单号请求支付宝支付接口
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("pre_order_no")]
|
||
|
|
public string PreOrderNo { get; set; }
|
||
|
|
}
|
||
|
|
}
|