11 lines
275 B
Go
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"`
|
|
}
|