Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayTradeBatchRefundModel.cs

45 lines
1.6 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayTradeBatchRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeBatchRefundModel : AopObject
{
/// <summary>
/// 每进行一次即时到账批量退款,都需要提供一个批次号,通过该批次号可以查询这一批次的退款交易记录。对于每一个合作伙伴,传递的每一个批次号都必须保证唯一性。
/// 格式为退款日期8位当天日期+流水号324位流水号可以接受数字或英文字符建议使用数字
/// </summary>
[JsonProperty("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 退款明细的笔数即参数detail_data的值中“#”字符出现的数量加1最大支持1000笔。
/// </summary>
[JsonProperty("batch_num")]
public string BatchNum { get; set; }
/// <summary>
/// 退款明细列表
/// </summary>
[JsonProperty("detail_data")]
public List<RefundDetail> DetailData { get; set; }
/// <summary>
/// 退款请求的当前时间。 格式为yyyy-MM-dd hh:mm:ss。
/// </summary>
[JsonProperty("refund_date")]
public string RefundDate { get; set; }
/// <summary>
/// 是否使用冻结金额退款。 Y可以使用冻结金额退款 N不可使用冻结金额退款 如果不提供则默认值为N。
/// </summary>
[JsonProperty("use_freeze_amount")]
public string UseFreezeAmount { get; set; }
}
}