This commit is contained in:
2023-05-14 07:00:24 +08:00
parent 2423213e9a
commit ee3b60eccc
18 changed files with 273 additions and 1221 deletions

View File

@@ -9,7 +9,7 @@ import (
type ListView struct {
Page int `json:"page"`
PageSize int `json:"page_size"`
Total int `json:"total"`
Total int64 `json:"total"`
Next bool `json:"next"`
List []interface{} `json:"list"`
}