初始提交
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// ZhimaMerchantOrderRentCreateResponse.
|
||||
/// </summary>
|
||||
public class ZhimaMerchantOrderRentCreateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否准入: Y-准入 N-不准入
|
||||
/// </summary>
|
||||
[JsonProperty("admit_state")]
|
||||
public string AdmitState { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户发起借用服务时,需要在借用结束后返回给商户的参数
|
||||
/// </summary>
|
||||
[JsonProperty("invoke_state")]
|
||||
public string InvokeState { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 芝麻信用借还订单号
|
||||
/// </summary>
|
||||
[JsonProperty("order_no")]
|
||||
public string OrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外部订单号,需要唯一,由商户传入,芝麻内部会做幂等控制,格式为:yyyyMMddHHmmss+4位随机数
|
||||
/// </summary>
|
||||
[JsonProperty("out_order_no")]
|
||||
public string OutOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 借用者的userId
|
||||
/// </summary>
|
||||
[JsonProperty("user_id")]
|
||||
public string UserId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user