Files
photowall/go/pkg/response/response.go
T
hero920103 57d9866dab feat: PhotoWall 毕业照存储系统初始版本
后端: Go(Gin+GORM+MySQL+Redis)
- 17张业务表(yz_pw_前缀), 自动迁移
- JWT认证(3小时) + 盐+MD5密码 + 图形验证码
- 班级CRUD/加入(8人姓名验证/邀请码)/审核/30天自动清理
- 系统配置(16项)/菜单管理(动态路由)/数据统计
- 文件MD5去重/数据隔离/账号封禁/敏感词DFA检测

前端: Vue3+Vite+Element Plus+Less+ECharts+FontAwesome
- 动态路由(数据库菜单驱动)
- 蓝白配色, H5响应式
- 登录/注册/忘记密码/个人中心
- 班级创建向导/详情/加入/列表
- 管理后台: 审核/配置/菜单/统计/用户/敏感词

数据库: MySQL 10.31.100.3:3306/photowall
管理员: hero920103 / 920103
2026-09-03 05:55:23 +08:00

51 lines
1.1 KiB
Go

package response
import (
"net/http"
"github.com/gin-gonic/gin"
)
// 统一响应结构
type Resp struct {
Code int `json:"code"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
}
func OK(c *gin.Context, data interface{}) {
c.JSON(http.StatusOK, Resp{Code: 0, Message: "ok", Data: data})
}
func Created(c *gin.Context, data interface{}) {
c.JSON(http.StatusCreated, Resp{Code: 0, Message: "created", Data: data})
}
func Fail(c *gin.Context, httpStatus int, msg string) {
c.JSON(httpStatus, Resp{Code: httpStatus, Message: msg})
}
func BadRequest(c *gin.Context, msg string) {
Fail(c, http.StatusBadRequest, msg)
}
func Unauthorized(c *gin.Context, msg string) {
Fail(c, http.StatusUnauthorized, msg)
}
func Forbidden(c *gin.Context, msg string) {
Fail(c, http.StatusForbidden, msg)
}
func NotFound(c *gin.Context, msg string) {
Fail(c, http.StatusNotFound, msg)
}
func Conflict(c *gin.Context, msg string) {
Fail(c, http.StatusConflict, msg)
}
func Internal(c *gin.Context, msg string) {
Fail(c, http.StatusInternalServerError, msg)
}