mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-22 02:27:57 +00:00
42 lines
748 B
Go
42 lines
748 B
Go
package app
|
|
|
|
type Response struct {
|
|
// 代码
|
|
Code int `json:"code" example:"200"`
|
|
// 数据集
|
|
Data interface{} `json:"data"`
|
|
// 消息
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
type Page struct {
|
|
List interface{} `json:"list"`
|
|
Count int `json:"count"`
|
|
PageIndex int `json:"pageIndex"`
|
|
PageSize int `json:"pageSize"`
|
|
}
|
|
|
|
type PageResponse struct {
|
|
// 代码
|
|
Code int `json:"code" example:"200"`
|
|
// 数据集
|
|
Data Page `json:"data"`
|
|
// 消息
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
func (res *Response) ReturnOK() *Response {
|
|
res.Code = 200
|
|
return res
|
|
}
|
|
|
|
func (res *Response) ReturnError(code int) *Response {
|
|
res.Code = code
|
|
return res
|
|
}
|
|
|
|
func (res *PageResponse) ReturnOK() *PageResponse {
|
|
res.Code = 200
|
|
return res
|
|
}
|