using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiServindustryPortfolioShopBatchqueryModel Data Structure.
///
[Serializable]
public class KoubeiServindustryPortfolioShopBatchqueryModel : AopObject
{
///
/// 插件id
///
[XmlElement("commodity_id")]
public string CommodityId { get; set; }
///
/// 当前页码;页码必须大于等于1;最大值:100
///
[XmlElement("page_no")]
public long PageNo { get; set; }
///
/// 分页大小;默认值:20;最大值:100
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 门店id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}