NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiServindustryPortfolio...

37 lines
968 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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