1 Star 0 Fork 0

ichub/gotestframe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HelloWorldFuncService.go 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-09-01 16:37 . add
package public
import (
"gitee.com/ichub/goconfig/common/base/basedto"
"gitee.com/ichub/gotestframe/api/apiweb/server/webcommon"
"gitee.com/ichub/goweb/common/webserver/funchandler"
"github.com/gin-gonic/gin"
"net/http"
)
type HelloWorldFuncService struct {
funchandler.FuncService
}
func NewHelloWorldFuncService() *HelloWorldFuncService {
return new(HelloWorldFuncService).init()
}
func (this *HelloWorldFuncService) init() *HelloWorldFuncService {
this.InitRoute(this, http.MethodGet, webcommon.PATH_HelloWorld)
return this
}
// @Summary 你好世界
// @Tags 公共服务
// @Produce json
// @Success 200 {object} basedto.IchubResult "成功"
// @Failure 400 {object} string "请求错误"
// @Failure 500 {object} string "内部错误"
// @Router / [get]
func (this *HelloWorldFuncService) Execute(c *gin.Context) {
c.IndentedJSON(http.StatusOK, (&basedto.IchubResult{}).SuccessData("Hello World"))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ichub/gotestframe.git
git@gitee.com:ichub/gotestframe.git
ichub
gotestframe
gotestframe
23f7283181f7

搜索帮助