Files
bl/cool/const.go
2025-06-20 17:13:51 +08:00

9 lines
140 B
Go

package cool
// Join 类型
const (
LeftJoin JoinType = "LeftJoin"
RightJoin JoinType = "RightJoin"
InnerJoin JoinType = "InnerJoin"
)