新增后台管理

This commit is contained in:
2025-06-08 15:07:04 +08:00
parent 9f51a4c403
commit 7762ad46fe
204 changed files with 15874 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package model
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/core/stores/sqlx"
)
var _ AgentPlatformDeductionModel = (*customAgentPlatformDeductionModel)(nil)
type (
// AgentPlatformDeductionModel is an interface to be customized, add more methods here,
// and implement the added methods in customAgentPlatformDeductionModel.
AgentPlatformDeductionModel interface {
agentPlatformDeductionModel
}
customAgentPlatformDeductionModel struct {
*defaultAgentPlatformDeductionModel
}
)
// NewAgentPlatformDeductionModel returns a model for the database table.
func NewAgentPlatformDeductionModel(conn sqlx.SqlConn, c cache.CacheConf) AgentPlatformDeductionModel {
return &customAgentPlatformDeductionModel{
defaultAgentPlatformDeductionModel: newAgentPlatformDeductionModel(conn, c),
}
}