mirror of
https://github.com/yv1ing/gin-admin.git
synced 2025-10-24 10:12:05 +08:00
13 lines
228 B
Go
13 lines
228 B
Go
package system
|
|
|
|
// @Author: yv1ing
|
|
// @Author: me@yvling.cn
|
|
// @Date: 2025/8/28 16:00
|
|
// @Desc: 系统基础数据模型
|
|
|
|
type Response struct {
|
|
Code int `json:"code"`
|
|
Info string `json:"info"`
|
|
Data any `json:"data"`
|
|
}
|