Files
bl/common/cool/const.go

9 lines
140 B
Go
Raw Normal View History

2025-06-20 17:13:51 +08:00
package cool
// Join 类型
const (
LeftJoin JoinType = "LeftJoin"
RightJoin JoinType = "RightJoin"
InnerJoin JoinType = "InnerJoin"
)