NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransGroupfundsFu...

43 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayFundTransGroupfundsFundbillsQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransGroupfundsFundbillsQueryModel : AopObject
{
/// <summary>
/// 流水关联的批次号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 当前查询单据流水的用户支付宝账户ID
/// </summary>
[XmlElement("current_user_id")]
public string CurrentUserId { get; set; }
/// <summary>
/// 扩展参数,可选,业务扩展时使用
/// </summary>
[XmlElement("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 查询类型SINGLE: 表示仅查询当前用户流水ALL: 表示查询所有流水默认为SINGLE
/// </summary>
[XmlElement("query_type")]
public string QueryType { get; set; }
/// <summary>
/// 业务来源,对于聚会小程序统一透传"openParty"
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
}
}