mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
21 lines
642 B
Go
21 lines
642 B
Go
package builderx
|
|
|
|
import (
|
|
"github.com/zeromicro/go-zero/core/stores/builder"
|
|
)
|
|
|
|
// Deprecated: Use github.com/zeromicro/go-zero/core/stores/builder.RawFieldNames instead.
|
|
func FieldNames(in interface{}) []string {
|
|
return builder.RawFieldNames(in)
|
|
}
|
|
|
|
// Deprecated: Use github.com/zeromicro/go-zero/core/stores/builder.RawFieldNames instead.
|
|
func RawFieldNames(in interface{}, postgresSql ...bool) []string {
|
|
return builder.RawFieldNames(in, postgresSql...)
|
|
}
|
|
|
|
// Deprecated: Use github.com/zeromicro/go-zero/core/stores/builderx.PostgreSqlJoin instead.
|
|
func PostgreSqlJoin(elems []string) string {
|
|
return builder.PostgreSqlJoin(elems)
|
|
}
|