做完了一部分,备份一下,防止以外删除

This commit is contained in:
2025-11-11 15:16:38 +08:00
parent 9600e5b6e0
commit e98dd4d725
39 changed files with 2423 additions and 183 deletions

46
pkg/response/response.go Normal file
View File

@@ -0,0 +1,46 @@
package response
import (
"time"
"github.com/break/junhong_cmp_fiber/pkg/errors"
"github.com/gofiber/fiber/v2"
)
// Response 统一 API 响应结构
type Response struct {
Code int `json:"code"` // 应用错误码0 = 成功)
Data any `json:"data"` // 响应数据(对象、数组或 null
Message string `json:"msg"` // 可读消息
Timestamp string `json:"timestamp"` // ISO 8601 时间戳
}
// Success 返回成功响应
func Success(c *fiber.Ctx, data any) error {
return c.JSON(Response{
Code: errors.CodeSuccess,
Data: data,
Message: "success",
Timestamp: time.Now().Format(time.RFC3339),
})
}
// Error 返回错误响应
func Error(c *fiber.Ctx, httpStatus int, code int, message string) error {
return c.Status(httpStatus).JSON(Response{
Code: code,
Data: nil,
Message: message,
Timestamp: time.Now().Format(time.RFC3339),
})
}
// SuccessWithMessage 返回带自定义消息的成功响应
func SuccessWithMessage(c *fiber.Ctx, data any, message string) error {
return c.JSON(Response{
Code: errors.CodeSuccess,
Data: data,
Message: message,
Timestamp: time.Now().Format(time.RFC3339),
})
}