mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 08:48:39 +08:00
18 lines
756 B
Go
18 lines
756 B
Go
//
|
||
// @Link https://github.com/bufanyun/hotgo
|
||
// @Copyright Copyright (c) 2022 HotGo CLI
|
||
// @Author Ms <133814250@qq.com>
|
||
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
||
//
|
||
package model
|
||
|
||
// HTTP响应
|
||
type Response struct {
|
||
Code int `json:"code" example:"0" description:"状态码"`
|
||
Message string `json:"message" example:"操作成功" description:"提示消息"`
|
||
Data interface{} `json:"data" description:"数据集"`
|
||
Error interface{} `json:"error" description:"错误信息"`
|
||
Timestamp int64 `json:"timestamp" example:"1640966400" description:"服务器时间戳"`
|
||
ReqId string `json:"req_id" v:"0" example:"d0bb93048bc5c9164cdee845dcb7f820" description:"唯一请求ID"`
|
||
}
|