mirror of
https://github.com/unti-io/go-utils.git
synced 2025-09-27 20:52:15 +08:00
11 lines
183 B
Go
11 lines
183 B
Go
package utils
|
|
|
|
// Resp - 返回数据结构
|
|
type Resp struct {
|
|
// 消息
|
|
Msg string `json:"msg"`
|
|
// 状态码
|
|
Code int `json:"code"`
|
|
// 数据
|
|
Data any `json:"data"`
|
|
} |