using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceIotSupplierAssetBatchqueryModel Data Structure. /// [Serializable] public class AlipayCommerceIotSupplierAssetBatchqueryModel : AopObject { /// /// 当前页码 /// [XmlElement("cur_page_num")] public long CurPageNum { get; set; } /// /// 搜索关键字,设备型号、设备名称等 /// [XmlElement("keyword")] public string Keyword { get; set; } /// /// 查询分页大小 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 供应商pid /// [XmlElement("supplier_pid")] public string SupplierPid { get; set; } } }