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