Files
ai/models/ListView.go
2023-04-18 05:51:50 +08:00

11 lines
275 B
Go

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"`
}