码农笔录博客源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
595 B

6 years ago
package utils
import (
"strconv"
)
6 years ago
type Page struct {
PageNo int
PageSize int
TotalPage int
TotalCount int
FirstPage bool
LastPage bool
List interface{}
}
func PageUtil(count64 int64, pageNo int, pageSize int) *Page {
string := strconv.FormatInt(count64, 10)
count, _ := strconv.Atoi(string)
6 years ago
tp := count / pageSize
if count%pageSize > 0 {
tp += 1
}
if tp < pageNo {
pageNo = tp
6 years ago
}
6 years ago
if pageNo == 0 {
pageNo = 1
tp = 1
}
return &Page{PageNo: pageNo, PageSize: pageSize, TotalPage: tp, TotalCount: count, FirstPage: pageNo == 1, LastPage: pageNo == tp}
6 years ago
}