You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package template
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// Vars defines a template for var block in model
|
|
|
|
var Vars = fmt.Sprintf(`
|
|
|
|
var (
|
|
|
|
{{.lowerStartCamelObject}}FieldNames = builderx.RawFieldNames(&{{.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}}
|
|
|
|
)
|
|
|
|
`, "`", "`", "`", "`", "`", "`", "`", "`")
|