28 lines
732 B
Go
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),
|
|
}
|
|
}
|