25 lines
613 B
Go
Executable File
25 lines
613 B
Go
Executable File
package model
|
|
|
|
import "github.com/zeromicro/go-zero/core/stores/sqlx"
|
|
|
|
var _ TransactionModel = (*customTransactionModel)(nil)
|
|
|
|
type (
|
|
// TransactionModel is an interface to be customized, add more methods here,
|
|
// and implement the added methods in customTransactionModel.
|
|
TransactionModel interface {
|
|
transactionModel
|
|
}
|
|
|
|
customTransactionModel struct {
|
|
*defaultTransactionModel
|
|
}
|
|
)
|
|
|
|
// NewTransactionModel returns a model for the database table.
|
|
func NewTransactionModel(conn sqlx.SqlConn) TransactionModel {
|
|
return &customTransactionModel{
|
|
defaultTransactionModel: newTransactionModel(conn),
|
|
}
|
|
}
|