You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
589 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AntMerchantExpandEnterpriseApplyResponse.
/// </summary>
public class AntMerchantExpandEnterpriseApplyResponse : AopResponse
{
/// <summary>
/// 支付宝端商户入驻申请单据号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 外部入驻申请单据号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
}
}