all_platform/api_conn/struct.go
2025-03-16 23:57:25 +08:00

10 lines
237 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package api_conn
// 错误数据返回
type Data_err struct {
Msg string `json:"msg"` // api请求返回成功、失败
Code string `json:"code"` // api请求返回错误码
Err string `json:"err"` // 返回错误信息
}