mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 19:37:41 +08:00
13 lines
245 B
Go
13 lines
245 B
Go
|
|
package common
|
||
|
|
|
||
|
|
type Resp struct {
|
||
|
|
Code int `json:"code"`
|
||
|
|
Message string `json:"message"`
|
||
|
|
Data interface{} `json:"data"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type PageResp struct {
|
||
|
|
Content interface{} `json:"content"`
|
||
|
|
Total int64 `json:"total"`
|
||
|
|
}
|