1 Star 0 Fork 0

bugsmo/go-utils

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pagination.go 236 Bytes
一键复制 编辑 原始数据 按行查看 历史
bugsmo 提交于 2024-06-01 22:06 +08:00 . v1.0.0
package pagination
const (
DefaultPage = 1 // 默认页数
DefaultPageSize = 10 // 默认每页行数
)
// GetPageOffset 计算偏移量
func GetPageOffset(pageNum, pageSize int32) int {
return int((pageNum - 1) * pageSize)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssxlt/go-utils.git
git@gitee.com:ssxlt/go-utils.git
ssxlt
go-utils
go-utils
v1.0.1

搜索帮助