1 Star 0 Fork 0

tomatomeatman / GolangRepository

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SystemParamsController.go 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
laowei 提交于 2024-05-14 10:02 . 加入多线程处理
package bridge
import (
. "gitee.com/tomatomeatman/golang-repository/bricks/utils/function/app"
. "gitee.com/tomatomeatman/golang-repository/bricks/utils/gin"
"github.com/gin-gonic/gin"
)
// @Controller 桥接服务-系统参数桥接操作接口
type SystemParamsController struct {
}
/**
* 初始化
*/
func init() {
if (AppUtil{}.IsNotCloudSystem()) { //禁用桥接
return
}
//-- 接口注册 --//
go GinUtil{}.RegisterController("/system/params/insidevisit/find/not/intercept", POST, SystemParamsController{}.FindByNoIntercept)
}
// #region @Api {title=取所有免拦截系统参数对象集合}
// @return {type=json explain=返回分页数据}
// @RequestMapping {name=FindByPage type=POST value=/system/params/insidevisit/find/not/intercept}
// #endregion
func (control SystemParamsController) FindByNoIntercept(ctx *gin.Context) interface{} {
return SystemParamsService{}.FindByNoIntercept(ctx)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tomatomeatman/golang-repository.git
git@gitee.com:tomatomeatman/golang-repository.git
tomatomeatman
golang-repository
GolangRepository
1a0844a34204

搜索帮助

Bbcd6f05 5694891 0cc6727d 5694891