初始化项目

This commit is contained in:
2025-12-06 18:36:43 +08:00
parent a42cca3c24
commit bd24d39d57
16 changed files with 11 additions and 159 deletions

View File

@@ -7,9 +7,7 @@ import (
"github.com/gogf/gf/v2/frame/g"
)
var (
AdSource = adSourceDao{}
)
var AdSource = &adSourceDao{}
type adSourceDao struct{}

View File

@@ -7,9 +7,7 @@ import (
"github.com/gogf/gf/v2/frame/g"
)
var (
CIDRequest = cidRequestDao{}
)
var CIDRequest = &cidRequestDao{}
type cidRequestDao struct{}

View File

@@ -7,9 +7,7 @@ import (
"github.com/gogf/gf/v2/frame/g"
)
var (
Strategy = strategyDao{}
)
var Strategy = &strategyDao{}
type strategyDao struct{}

View File

@@ -9,7 +9,7 @@ import (
"github.com/gogf/gf/v2/frame/g"
)
var Tenant = tenantDao{}
var Tenant = &tenantDao{}
type tenantDao struct{}