Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AntMerchantExpandContractFacetofaceQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

40 lines
1.1 KiB
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AntMerchantExpandContractFacetofaceQueryResponse.
/// </summary>
public class AntMerchantExpandContractFacetofaceQueryResponse : AopResponse
{
/// <summary>
/// 订单创建时间
/// </summary>
[JsonProperty("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 产品签约审核结果,申请单状态为审核失败时失败原因用“;”分割,其他状态产品签约审核结果为空
/// </summary>
[JsonProperty("order_detail")]
public string OrderDetail { get; set; }
/// <summary>
/// 支付宝端商户入驻申请单据号
/// </summary>
[JsonProperty("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 支付宝商户入驻申请单状态,申请单状态包括:暂存、审核中、审核成功、审核失败
/// </summary>
[JsonProperty("order_status")]
public string OrderStatus { get; set; }
/// <summary>
/// 由开发者创建的外部入驻申请单据号
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
}
}