15 lines
251 B
Go
15 lines
251 B
Go
package utils
|
|
|
|
// GenTotalPage 计算总页数
|
|
func GenTotalPage(count int64, size int) int {
|
|
totalPage := 0
|
|
if count > 0 {
|
|
upPage := 0
|
|
if int(count)%size > 0 {
|
|
upPage = 1
|
|
}
|
|
totalPage = (int(count) / size) + upPage
|
|
}
|
|
return totalPage
|
|
}
|