megrez/routers/api/v1/middleware/struct.go
2024-12-29 01:02:31 +08:00

13 lines
219 B
Go

package middleware
type Response struct {
Code ResCode `json:"code"`
Msg string `json:"msg"`
Data *Data `json:"data"`
}
type Data struct {
Result any `json:"result"`
Total int64 `json:"total,omitempty"`
}