You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
739 B
24 lines
739 B
package model
|
|
|
|
import "github.com/zeromicro/go-zero/core/stores/sqlx"
|
|
|
|
var _ TeThoroughlyRegisterModel = (*customTeThoroughlyRegisterModel)(nil)
|
|
|
|
type (
|
|
// TeThoroughlyRegisterModel is an interface to be customized, add more methods here,
|
|
// and implement the added methods in customTeThoroughlyRegisterModel.
|
|
TeThoroughlyRegisterModel interface {
|
|
teThoroughlyRegisterModel
|
|
}
|
|
|
|
customTeThoroughlyRegisterModel struct {
|
|
*defaultTeThoroughlyRegisterModel
|
|
}
|
|
)
|
|
|
|
// NewTeThoroughlyRegisterModel returns a model for the database table.
|
|
func NewTeThoroughlyRegisterModel(conn sqlx.SqlConn) TeThoroughlyRegisterModel {
|
|
return &customTeThoroughlyRegisterModel{
|
|
defaultTeThoroughlyRegisterModel: newTeThoroughlyRegisterModel(conn),
|
|
}
|
|
}
|
|
|