using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceIotSnApplyBatchqueryModel Data Structure. /// [Serializable] public class AlipayCommerceIotSnApplyBatchqueryModel : AopObject { /// /// 每页数量,最多100 /// [XmlElement("limit")] public long Limit { get; set; } /// /// 分页搜索偏移值 /// [XmlElement("offset")] public long Offset { get; set; } /// /// 厂商id /// [XmlElement("supplier_id")] public string SupplierId { get; set; } } }