using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayDataBillSellQueryModel Data Structure.
///
[Serializable]
public class AlipayDataBillSellQueryModel : AopObject
{
///
/// 支付宝交易流水号。如果查询参数中指定流水号,则只查询流水号相关的记录
///
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
///
/// 卖出交易流水创建时间的结束范围。与起始时间间隔不超过31天。查询结果为起始时间至结束时间的左闭右开区间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 商户交易号。如果查询参数中指定交易号,则只查询相关的记录
///
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
///
/// 分页号,从1开始
///
[XmlElement("page_no")]
public string PageNo { get; set; }
///
/// 分页大小1000-2000,默认2000
///
[XmlElement("page_size")]
public string PageSize { get; set; }
///
/// 卖出交易流水创建时间的起始范围
///
[XmlElement("start_time")]
public string StartTime { get; set; }
///
/// 门店编号,模糊搜索
///
[XmlElement("store_no")]
public string StoreNo { get; set; }
}
}