码农笔录博客源码
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

37 rader
746 B

6 år sedan
package utils
import (
"strconv"
"fmt"
)
6 år sedan
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 {
6 år sedan
fmt.Println("count",count64,"paheNo",pageNo,"pageSize",pageSize)
string := strconv.FormatInt(count64, 10)
count, _ := strconv.Atoi(string)
6 år sedan
tp := count / pageSize
if count%pageSize > 0 {
tp += 1
}
6 år sedan
fmt.Println("tp:", tp, "num", pageNo)
if tp < pageNo {
pageNo = tp
6 år sedan
}
6 år sedan
if pageNo == 0 {
pageNo = 1
tp = 1
}
fmt.Println("tp:", tp, "num", pageNo)
return &Page{PageNo: pageNo, PageSize: pageSize, TotalPage: tp, TotalCount: count, FirstPage: pageNo == 1, LastPage: pageNo == tp}
6 år sedan
}