1 Star 0 Fork 0

瑞哥/util

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Resp.go 641 Bytes
一键复制 编辑 原始数据 按行查看 历史
瑞哥 提交于 2022-12-30 11:04 . 2022年12月30日11:04:44
package std
import "encoding/json"
type Resp struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data RespData `json:"data"`
}
func (r Resp) String() string {
marshal, _ := json.Marshal(&r)
return string(marshal)
}
type RespData struct {
Data any `json:"data"`
Other any `json:"other"`
}
func NewResp(code int, msg string, data any, other any) Resp {
return Resp{
Code: code,
Msg: msg,
Data: RespData{
Data: data,
Other: other,
},
}
}
type ListParams struct {
ID uint `json:"id"`
Page int `json:"page" validate:"required,min=1"`
Size int `json:"size" validate:"required,min=1,max=10000"`
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ruige_fun/util.git
git@gitee.com:ruige_fun/util.git
ruige_fun
util
util
v0.0.41

搜索帮助