This commit is contained in:
2023-04-18 05:51:50 +08:00
parent 572096dbdf
commit 2f863626bd
3 changed files with 110 additions and 2 deletions

10
models/ListView.go Normal file
View File

@@ -0,0 +1,10 @@
package models
type ListView struct {
Code int `json:"code"`
Page int `json:"page"`
PageSize int `json:"page_size"`
Total int `json:"total"`
Next bool `json:"next"`
List []interface{} `json:"list"`
}