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

This commit is contained in:
GoEdgeLab
2022-10-15 19:16:08 +08:00
parent 060dc036c3
commit 4aa0f35936
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