From 19316c381ee3e809fade7f64e7fdb8428719c835 Mon Sep 17 00:00:00 2001 From: Jinzhu Date: Sat, 24 Dec 2022 12:21:44 +0800 Subject: [PATCH] Update statement.go --- statement.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/statement.go b/statement.go index bc12eb76..9f49d584 100644 --- a/statement.go +++ b/statement.go @@ -49,12 +49,12 @@ type Statement struct { } type join struct { - Name string - Conds []interface{} - On *clause.Where - Selects []string - Omits []string - JoinType clause.JoinType + Name string + Conds []interface{} + On *clause.Where + Selects []string + Omits []string + JoinType clause.JoinType } // StatementModifier statement modifier interface