Files
ycc-proxy-server/app/main/model/agentShortLinkModel.go
2025-12-02 19:57:10 +08:00

28 lines
732 B
Go

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),
}
}