48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|