using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOfflineProviderDishQueryResponse. /// public class AlipayOfflineProviderDishQueryResponse : AopResponse { /// /// 总共有多少条菜品信息。可用于计算分页。 /// [JsonProperty("items")] public long Items { get; set; } /// /// 菜品列表信息 /// [JsonProperty("list")] public List List { get; set; } /// /// 当前数据所在的页码数 /// [JsonProperty("page")] public long Page { get; set; } /// /// 当前查询结果分页的条数,可用于计算分页 /// [JsonProperty("page_size")] public long PageSize { get; set; } /// /// 当前条件下查询结果总的页码数 /// [JsonProperty("pages")] public long Pages { get; set; } } }