b_trans.go 173 B

123456789
  1. package bll
  2. import "context"
  3. // ITrans 事务管理接口
  4. type ITrans interface {
  5. // Exec 执行事务
  6. Exec(ctx context.Context, fn func(context.Context) error) error
  7. }