2022-06-26 19:09:28 +08:00
|
|
|
package common
|
|
|
|
|
2022-10-27 10:54:49 +08:00
|
|
|
type Resp[T any] struct {
|
|
|
|
Code int `json:"code"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
Data T `json:"data"`
|
2022-06-26 19:09:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type PageResp struct {
|
|
|
|
Content interface{} `json:"content"`
|
|
|
|
Total int64 `json:"total"`
|
|
|
|
}
|