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

37 lines
955 B
C#
Raw Permalink 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>
/// KoubeiServindustryPortfolioShopBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiServindustryPortfolioShopBatchqueryModel : 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("shop_id")]
public string ShopId { get; set; }
}
}