mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-04-25 08:58:21 +08:00
13 lines
219 B
Go
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"`
|
|
}
|