22 lines
510 B
C#
22 lines
510 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Response
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandPersonalApplyResponse.
|
|
/// </summary>
|
|
public class AntMerchantExpandPersonalApplyResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 支付宝端商户入驻申请单据号
|
|
/// </summary>
|
|
[JsonProperty("order_no")]
|
|
public string OrderNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部入驻申请单据号
|
|
/// </summary>
|
|
[JsonProperty("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
}
|
|
} |