mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
eab904af64
* chore: update goctl interface{} to any * chore: update goctl interface{} to any
21 lines
626 B
Go
21 lines
626 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 any) []string {
|
|
return builder.RawFieldNames(in)
|
|
}
|
|
|
|
// Deprecated: Use github.com/zeromicro/go-zero/core/stores/builder.RawFieldNames instead.
|
|
func RawFieldNames(in any, 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)
|
|
}
|