using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoMycarMerchantshopCommentBatchqueryModel Data Structure. /// [Serializable] public class AlipayEcoMycarMerchantshopCommentBatchqueryModel : AopObject { /// /// 当前页号(从1开始) /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 分页数量,每页不超过100条。 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public long ShopId { get; set; } } }