26 lines
744 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ==========================================================================
// GFast自动生成router操作代码。
// 生成日期2025-08-11 09:52:43
// 生成路径: internal/app/businesses/router/definiteness.go
// 生成人gfast
// desc:限定性情况
// company:云南奇讯科技有限公司
// ==========================================================================
package router
import (
"context"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/tiger1103/gfast/v3/internal/app/businesses/controller"
)
func (router *Router) BindDefinitenessController(ctx context.Context, group *ghttp.RouterGroup) {
group.Group("/definiteness", func(group *ghttp.RouterGroup) {
group.Bind(
controller.Definiteness,
)
})
}