接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayFundTransBatchCreateorderModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransBatchCreateorderModel : AopObject
{
/// <summary>
/// 批次编号:创建批次时生成的批次号;表示这笔付款是这个批次下面的一条明细
/// </summary>
[JsonProperty("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 必须是map<String, String>的json串长度限制为100
/// </summary>
[JsonProperty("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 金额,单位为元
/// </summary>
[JsonProperty("pay_amount")]
public string PayAmount { get; set; }
/// <summary>
/// 收款方userId
/// </summary>
[JsonProperty("payee_id")]
public string PayeeId { get; set; }
/// <summary>
/// 付款方userId
/// </summary>
[JsonProperty("payer_id")]
public string PayerId { get; set; }
/// <summary>
/// token创建批次时和批次编号一起下发的token串
/// </summary>
[JsonProperty("token")]
public string Token { get; set; }
}
}