28 lines
679 B
Go
Executable File
28 lines
679 B
Go
Executable File
package model
|
|
|
|
import (
|
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
|
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
|
)
|
|
|
|
var _ UserRoleModel = (*customUserRoleModel)(nil)
|
|
|
|
type (
|
|
// UserRoleModel is an interface to be customized, add more methods here,
|
|
// and implement the added methods in customUserRoleModel.
|
|
UserRoleModel interface {
|
|
userRoleModel
|
|
}
|
|
|
|
customUserRoleModel struct {
|
|
*defaultUserRoleModel
|
|
}
|
|
)
|
|
|
|
// NewUserRoleModel returns a model for the database table.
|
|
func NewUserRoleModel(conn sqlx.SqlConn, c cache.CacheConf, opts ...cache.Option) UserRoleModel {
|
|
return &customUserRoleModel{
|
|
defaultUserRoleModel: newUserRoleModel(conn, c, opts...),
|
|
}
|
|
}
|