NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataBillBalancehisQue...

25 lines
724 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>
/// AlipayDataBillBalancehisQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataBillBalancehisQueryModel : AopObject
{
/// <summary>
/// 查询指定自然日的起初余额和期末余额biz_date与biz_month传入参数互斥
/// </summary>
[XmlElement("biz_date")]
public string BizDate { get; set; }
/// <summary>
/// 查询指定自然月的起初余额和期末余额biz_date与biz_month传入参数互斥
/// </summary>
[XmlElement("biz_month")]
public string BizMonth { get; set; }
}
}