NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransAacollectBat...

25 lines
661 B
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>
/// AlipayFundTransAacollectBatchQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransAacollectBatchQueryModel : AopObject
{
/// <summary>
/// 批次号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 防止接口被遍历所设置的查询token在调用创建批次时生成随批次号下发
/// </summary>
[XmlElement("batch_token")]
public string BatchToken { get; set; }
}
}