This commit is contained in:
2025-12-02 19:57:10 +08:00
parent 3440744179
commit 08ff223ff8
188 changed files with 12337 additions and 7212 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 _ AgentShortLinkModel = (*customAgentShortLinkModel)(nil)
type (
// AgentShortLinkModel is an interface to be customized, add more methods here,
// and implement the added methods in customAgentShortLinkModel.
AgentShortLinkModel interface {
agentShortLinkModel
}
customAgentShortLinkModel struct {
*defaultAgentShortLinkModel
}
)
// NewAgentShortLinkModel returns a model for the database table.
func NewAgentShortLinkModel(conn sqlx.SqlConn, c cache.CacheConf) AgentShortLinkModel {
return &customAgentShortLinkModel{
defaultAgentShortLinkModel: newAgentShortLinkModel(conn, c),
}
}