Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
32 lignes
595 B
32 lignes
595 B
package utils
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
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)
|
|
tp := count / pageSize
|
|
if count%pageSize > 0 {
|
|
tp += 1
|
|
}
|
|
if tp < pageNo {
|
|
pageNo = tp
|
|
}
|
|
if pageNo == 0 {
|
|
pageNo = 1
|
|
tp = 1
|
|
}
|
|
return &Page{PageNo: pageNo, PageSize: pageSize, TotalPage: tp, TotalCount: count, FirstPage: pageNo == 1, LastPage: pageNo == tp}
|
|
}
|
|
|