This commit is contained in:
2024-05-09 16:59:25 +08:00
parent 65b9f3795d
commit 90f807defc
12 changed files with 1283 additions and 0 deletions

10
clauses/returning_into.go Normal file
View File

@ -0,0 +1,10 @@
package clauses
import (
"gorm.io/gorm/clause"
)
type ReturningInto struct {
Variables []clause.Column
Into []*clause.Values
}