NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMerchantOrderDigestUn...

55 lines
2.2 KiB
C#
Raw 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>
/// AlipayMerchantOrderDigestUnlimitedBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMerchantOrderDigestUnlimitedBatchqueryModel : AopObject
{
/// <summary>
/// 买家支付宝用户id
/// </summary>
[XmlElement("buyer_id")]
public string BuyerId { get; set; }
/// <summary>
/// 结束时间格式为yyyy-MM-dd hh:mm:ss 查询返回的订单支付时间在end_time之前不包括end_time 注为了避免数据重复可在start_time不变的情况下利用上一次返回中的next_end_time作为下一次end_time的入参实现分页查询
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 查询订单所属的appid该appid必须为签约商户下的appid 注若为空则返回订单列表不按照appid进行筛选
/// </summary>
[XmlElement("merchant_app_id")]
public string MerchantAppId { get; set; }
/// <summary>
/// 商户的uid即所需查询订单的partnerId
/// </summary>
[XmlElement("merchant_user_id")]
public string MerchantUserId { get; set; }
/// <summary>
/// 所需查询的订单来源 取值范围: ALL-全部订单来源(默认值) TINY_APP-来自小程序的订单
/// </summary>
[XmlElement("order_source")]
public string OrderSource { get; set; }
/// <summary>
/// 查询条数 取值范围:[1,50] 注若start_time与end_time之间的总条数大于size则按照订单支付时间倒序取前size条若总条数小于size则按照订单支付时间倒序返回实际条数
/// </summary>
[XmlElement("size")]
public long Size { get; set; }
/// <summary>
/// 查询开始时间格式为yyyy-MM-dd hh:mm:ss 查询返回的订单支付时间在start_time之后不包括start_time
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}