go-wxhelper/model/robot/response.go

10 lines
212 B
Go
Raw Permalink Normal View History

2024-02-19 14:57:36 +08:00
package robot
// Response
// @description: 基础返回结构体
type Response[T any] struct {
Code int `json:"code"` // 状态码
Data T `json:"data"` // 数据
Msg string `json:"msg"` // 消息
}