Update statement.go

This commit is contained in:
Jinzhu 2022-12-24 12:21:44 +08:00 committed by GitHub
parent 941f208534
commit 19316c381e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,12 +49,12 @@ type Statement struct {
} }
type join struct { type join struct {
Name string Name string
Conds []interface{} Conds []interface{}
On *clause.Where On *clause.Where
Selects []string Selects []string
Omits []string Omits []string
JoinType clause.JoinType JoinType clause.JoinType
} }
// StatementModifier statement modifier interface // StatementModifier statement modifier interface