|
|
package dao
|
|
|
|
|
|
import (
|
|
|
"fmt"
|
|
|
pgTransaction "github.com/linmadan/egglib-go/transaction/pg"
|
|
|
)
|
|
|
|
|
|
type SuMoneyTransactionRecordsDao struct {
|
|
|
transactionContext *pgTransaction.TransactionContext
|
|
|
}
|
|
|
|
|
|
//TODO ChangeSuMoneyTransactionRecordsEmployeeAccount
|
|
|
func (dao *SuMoneyTransactionRecordsDao) ChangeSuMoneyTransactionRecordsEmployeeAccount() {
|
|
|
|
|
|
}
|
|
|
|
|
|
//TODO ChangeSuMoneyTransactionRecordsOperatorAccount
|
|
|
func (dao *SuMoneyTransactionRecordsDao) ChangeSuMoneyTransactionRecordsOperatorAccount() {
|
|
|
|
|
|
}
|
|
|
|
|
|
func NewSuMoneyTransactionRecordsDao(transactionContext *pgTransaction.TransactionContext) (*SuMoneyTransactionRecordsDao, error) {
|
|
|
if transactionContext == nil {
|
|
|
return nil, fmt.Errorf("transactionContext参数不能为nil")
|
|
|
} else {
|
|
|
return &SuMoneyTransactionRecordsDao{
|
|
|
transactionContext: transactionContext,
|
|
|
}, nil
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|