Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayFundTransBatchCreateorderModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

48 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}