using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiServindustryPortfolioOpusBatchqueryModel Data Structure.
///
[Serializable]
public class KoubeiServindustryPortfolioOpusBatchqueryModel : 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("portfolio_id")]
public string PortfolioId { get; set; }
}
}