This commit is contained in:
2025-07-07 20:11:59 +08:00
parent ab0fdbc447
commit 06e3aa2eb3
2009 changed files with 193082 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// ==========================================================================
// GFast自动生成router操作代码。
// 生成日期2024-03-23 10:25:39
// 生成路径: internal/app/system/router/pv_ module.go
// 生成人gfast
// desc:光伏组件
// company:云南奇讯科技有限公司
// ==========================================================================
package router
import (
"context"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/tiger1103/gfast/v3/internal/app/system/controller"
)
func (router *Router) BindPvModuleController(ctx context.Context, group *ghttp.RouterGroup) {
group.Group("/pvModule", func(group *ghttp.RouterGroup) {
group.Bind(
controller.PvModule,
)
})
}