using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiRetailExtitemShopextitemQueryModel Data Structure.
///
[Serializable]
public class KoubeiRetailExtitemShopextitemQueryModel : AopObject
{
///
/// 查询页码,表示第几页,不传默认1
///
[XmlElement("page_no")]
public string PageNo { get; set; }
///
/// 分页大小,表示每页查询数量,不传默认10
///
[XmlElement("page_size")]
public string PageSize { get; set; }
///
/// 口碑店铺id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}