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