Compare commits
2 Commits
b34984be74
...
445c6407db
Author | SHA1 | Date | |
---|---|---|---|
445c6407db | |||
a61f85b4e7 |
@ -21,6 +21,9 @@ type calculate struct {
|
||||
//
|
||||
// Date : 15:50 2022/7/17
|
||||
func (c *calculate) GetTotalPage(total int64, pageSize int64) int64 {
|
||||
if pageSize <= 0 {
|
||||
return 1
|
||||
}
|
||||
totalPage := total / pageSize
|
||||
if total%pageSize > 0 {
|
||||
totalPage++
|
||||
|
Loading…
Reference in New Issue
Block a user