Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Helpers/PagedQueryConvention.cs 407 Bytes
143afd59   杨鑫   打印,标签
1
2
3
4
5
6
7
8
9
10
  namespace FoodLabeling.Application.Helpers;
  
  /// <summary>
  /// 与平台端约定:列表接口 Query  <c>SkipCount</c> 表示 SqlSugar 分页<strong>页码(从 1 起)</strong>
  /// 不是 0  offset。第一页应传 <c>SkipCount=1</c>
  /// </summary>
  public static class PagedQueryConvention
  {
      public static int PageIndexFromSkipCount(int skipCount) => skipCount <= 0 ? 1 : skipCount;
  }