|
@@ -1,9 +1,10 @@
|
|
package util
|
|
package util
|
|
|
|
|
|
type Errors struct {
|
|
type Errors struct {
|
|
- Code int `json:"code"`
|
|
|
|
- Msg string `json:"msg"`
|
|
|
|
- Data interface{} `json:"data"`
|
|
|
|
|
|
+ Code int `json:"code"`
|
|
|
|
+ Success bool `json:"success"`
|
|
|
|
+ Msg string `json:"msg"`
|
|
|
|
+ Data interface{} `json:"data"`
|
|
}
|
|
}
|
|
|
|
|
|
const (
|
|
const (
|
|
@@ -16,45 +17,52 @@ const (
|
|
|
|
|
|
const (
|
|
const (
|
|
Succeeded = "操作成功"
|
|
Succeeded = "操作成功"
|
|
|
|
+ Success = "success"
|
|
Failed = "操作失败"
|
|
Failed = "操作失败"
|
|
|
|
+ Fail = "fail"
|
|
)
|
|
)
|
|
|
|
|
|
func SuccessResponse(msg string, data interface{}) *Errors {
|
|
func SuccessResponse(msg string, data interface{}) *Errors {
|
|
return &Errors{
|
|
return &Errors{
|
|
- Code: CodeSucceed,
|
|
|
|
- Msg: msg,
|
|
|
|
- Data: data,
|
|
|
|
|
|
+ Code: CodeSucceed,
|
|
|
|
+ Success: true,
|
|
|
|
+ Msg: msg,
|
|
|
|
+ Data: data,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func FailResponse(msg string, data interface{}) *Errors {
|
|
func FailResponse(msg string, data interface{}) *Errors {
|
|
return &Errors{
|
|
return &Errors{
|
|
- Code: CodeInternal,
|
|
|
|
- Msg: msg,
|
|
|
|
- Data: data,
|
|
|
|
|
|
+ Code: CodeInternal,
|
|
|
|
+ Success: false,
|
|
|
|
+ Msg: msg,
|
|
|
|
+ Data: data,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func ParamsInvalidResponse(msg string, data interface{}) *Errors {
|
|
func ParamsInvalidResponse(msg string, data interface{}) *Errors {
|
|
return &Errors{
|
|
return &Errors{
|
|
- Code: CodeParamsInvalid,
|
|
|
|
- Msg: msg,
|
|
|
|
- Data: data,
|
|
|
|
|
|
+ Code: CodeParamsInvalid,
|
|
|
|
+ Success: false,
|
|
|
|
+ Msg: msg,
|
|
|
|
+ Data: data,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func OperationInvalidResponse(msg string, data interface{}) *Errors {
|
|
func OperationInvalidResponse(msg string, data interface{}) *Errors {
|
|
return &Errors{
|
|
return &Errors{
|
|
- Code: CodeOperationInvalid,
|
|
|
|
- Msg: msg,
|
|
|
|
- Data: data,
|
|
|
|
|
|
+ Code: CodeOperationInvalid,
|
|
|
|
+ Success: false,
|
|
|
|
+ Msg: msg,
|
|
|
|
+ Data: data,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func NormalResponse(code int, msg string, data interface{}) *Errors {
|
|
func NormalResponse(code int, msg string, data interface{}) *Errors {
|
|
return &Errors{
|
|
return &Errors{
|
|
- Code: code,
|
|
|
|
- Msg: msg,
|
|
|
|
- Data: data,
|
|
|
|
|
|
+ Code: code,
|
|
|
|
+ Success: true,
|
|
|
|
+ Msg: msg,
|
|
|
|
+ Data: data,
|
|
}
|
|
}
|
|
}
|
|
}
|