namespace FoodLabeling.Application.Helpers; /// /// 与平台端约定:列表接口 Query 的 SkipCount 表示 SqlSugar 分页页码(从 1 起), /// 不是 0 基 offset。第一页应传 SkipCount=1。 /// public static class PagedQueryConvention { public static int PageIndexFromSkipCount(int skipCount) => skipCount <= 0 ? 1 : skipCount; }