mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
db16115037
* add execute files * add protoc-osx * add rpc generation * add rpc generation * add: rpc template generation * update usage * fixed env prepare for project in go path * optimize gomod cache * add README.md * format error * reactor templatex.go * remove waste code
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package gen
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/stringx"
|
|
)
|
|
|
|
func genInsert(table Table, withCache bool) (string, error) {
|
|
expressions := make([]string, 0)
|
|
expressionValues := make([]string, 0)
|
|
for _, filed := range table.Fields {
|
|
camel := filed.Name.ToCamel()
|
|
if camel == "CreateTime" || camel == "UpdateTime" {
|
|
continue
|
|
}
|
|
if filed.IsPrimaryKey && table.PrimaryKey.AutoIncrement {
|
|
continue
|
|
}
|
|
expressions = append(expressions, "?")
|
|
expressionValues = append(expressionValues, "data."+camel)
|
|
}
|
|
camel := table.Name.ToCamel()
|
|
output, err := util.With("insert").
|
|
Parse(template.Insert).
|
|
Execute(map[string]interface{}{
|
|
"withCache": withCache,
|
|
"upperStartCamelObject": camel,
|
|
"lowerStartCamelObject": stringx.From(camel).UnTitle(),
|
|
"expression": strings.Join(expressions, ", "),
|
|
"expressionValues": strings.Join(expressionValues, ", "),
|
|
})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return output.String(), nil
|
|
}
|