using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceIotDapplyDevicetradestatlistQueryModel Data Structure.
///
[Serializable]
public class AlipayCommerceIotDapplyDevicetradestatlistQueryModel : AopObject
{
///
/// 分页起始偏移
///
[XmlElement("offset")]
public long Offset { get; set; }
///
/// 分页大小
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 查询范围截止日期
///
[XmlElement("stat_end")]
public string StatEnd { get; set; }
///
/// 查询范围起始值
///
[XmlElement("stat_start")]
public string StatStart { get; set; }
}
}