mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
a3b525b50d
* add raw stirng quote for sql field * remove unused code
15 lines
763 B
Go
15 lines
763 B
Go
package template
|
|
|
|
import "fmt"
|
|
|
|
var Vars = fmt.Sprintf(`
|
|
var (
|
|
{{.lowerStartCamelObject}}FieldNames = builderx.FieldNames(&{{.upperStartCamelObject}}{})
|
|
{{.lowerStartCamelObject}}Rows = strings.Join({{.lowerStartCamelObject}}FieldNames, ",")
|
|
{{.lowerStartCamelObject}}RowsExpectAutoSet = strings.Join(stringx.Remove({{.lowerStartCamelObject}}FieldNames, {{if .autoIncrement}}"{{.originalPrimaryKey}}",{{end}} "%screate_time%s", "%supdate_time%s"), ",")
|
|
{{.lowerStartCamelObject}}RowsWithPlaceHolder = strings.Join(stringx.Remove({{.lowerStartCamelObject}}FieldNames, "{{.originalPrimaryKey}}", "%screate_time%s", "%supdate_time%s"), "=?,") + "=?"
|
|
|
|
{{if .withCache}}{{.cacheKeys}}{{end}}
|
|
)
|
|
`, "`", "`", "`", "`", "`", "`", "`", "`")
|