1 Star 2 Fork 1

thinkgo / torm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
join_clause.go 403 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jon Lee 提交于 2019-02-01 13:19 . first commit
package torm
type JoinClause struct {
Builder
Type string
Table string
ParentBuilder *Builder
}
func NewJoinClause(parentBuilder *Builder, typeStr string, table string) *JoinClause {
j := &JoinClause{
Type: typeStr,
Table: table,
ParentBuilder: parentBuilder,
}
j.Connection = parentBuilder.Connection
j.grammar = parentBuilder.GetGrammar()
return j
}
1
https://gitee.com/thinkgo/torm.git
git@gitee.com:thinkgo/torm.git
thinkgo
torm
torm
master

搜索帮助