实现用户计费方式相关多个接口

This commit is contained in:
刘祥超
2022-10-15 19:16:08 +08:00
parent 979ff4c44e
commit 0fe76430c6
3 changed files with 30 additions and 2 deletions

View File

@@ -228,6 +228,10 @@ func (this *BaseService) PermissionError() error {
return errors.New("Permission Denied")
}
func (this *BaseService) NotImplementedYet() error {
return errors.New("not implemented yet")
}
// NullTx 空的数据库事务
func (this *BaseService) NullTx() *dbs.Tx {
return nil