go-wxhelper/model/dto/response.go

10 lines
210 B
Go
Raw Normal View History

2024-07-05 09:32:39 +08:00
package dto
2023-09-21 17:33:59 +08:00
// Response
// @description: 基础返回结构体
type Response[T any] struct {
Code int `json:"code"` // 状态码
Data T `json:"data"` // 数据
Msg string `json:"msg"` // 消息
}