NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditHuabeiMerchant...

31 lines
775 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>
/// AlipayPcreditHuabeiMerchantBillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditHuabeiMerchantBillQueryModel : AopObject
{
/// <summary>
/// 商户模版ID
/// </summary>
[XmlElement("aggr_id")]
public string AggrId { get; set; }
/// <summary>
/// 账单结束时间与开始时间不能超过30天
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 账单开始时间
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}