using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AntMerchantExpandMapplyorderQueryResponse. /// public class AntMerchantExpandMapplyorderQueryResponse : AopResponse { /// /// 支付宝端商户入驻申请单据号 /// [JsonProperty("order_no")] public string OrderNo { get; set; } /// /// 支付宝商户入驻申请单状态 /// [JsonProperty("order_status")] public string OrderStatus { get; set; } /// /// 外部入驻申请单据号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 入驻申请单认证审核、签约审核详情 /// [JsonProperty("result_info")] public List ResultInfo { get; set; } } }