using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiItemExtitemBatchqueryModel Data Structure. /// [Serializable] public class KoubeiItemExtitemBatchqueryModel : AopObject { /// /// 品牌编码 /// [JsonProperty("brand_code")] public string BrandCode { get; set; } /// /// 品类编码 /// [JsonProperty("category_code")] public string CategoryCode { get; set; } /// /// 当前页码。 /// [JsonProperty("page_num")] public string PageNum { get; set; } /// /// 分页大小。最大50条,超过限制默认50 /// [JsonProperty("page_size")] public string PageSize { get; set; } /// /// 商品名称(仅支持前缀匹配) /// [JsonProperty("title")] public string Title { get; set; } } }