sunty
2020-04-10 7cad8c01d06a2dfaa1654dc39a35e49e3016deee
update AddSuccess
1个文件已修改
2 ■■■ 已修改文件
code/code.go 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
code/code.go
@@ -13,7 +13,7 @@
    LicenseExpired = &Code{http.StatusForbidden, false, "license expired"}
    // Success 请求处理成功
    Success       = &Code{http.StatusOK, true, "请求处理成功"}
    AddSuccess    = &Code{http.StatusOK, true, "计入成功"}
    AddSuccess    = &Code{http.StatusOK, true, "加入成功"}
    UpdateSuccess = &Code{http.StatusOK, true, "更新成功"}
    UpdateFail    = &Code{http.StatusBadRequest, false, "更新失败"}
    DelSuccess    = &Code{http.StatusOK, true, "删除成功"}