mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
41964f9d52
* model/rpc generate code from template cache * delete unused(deprecated) code * support template init|update|clean|revert * model: return the execute result for insert and update operation * // deprecated: containsAny * add template test * add default buildVersion * update build version
47 lines
1.4 KiB
Go
47 lines
1.4 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 genUpdate(table Table, withCache bool) (string, error) {
|
|
expressionValues := make([]string, 0)
|
|
for _, filed := range table.Fields {
|
|
camel := filed.Name.ToCamel()
|
|
if camel == "CreateTime" || camel == "UpdateTime" {
|
|
continue
|
|
}
|
|
if filed.IsPrimaryKey {
|
|
continue
|
|
}
|
|
expressionValues = append(expressionValues, "data."+camel)
|
|
}
|
|
expressionValues = append(expressionValues, "data."+table.PrimaryKey.Name.ToCamel())
|
|
camelTableName := table.Name.ToCamel()
|
|
text, err := util.LoadTemplate(category, updateTemplateFile, template.Update)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
output, err := util.With("update").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"withCache": withCache,
|
|
"upperStartCamelObject": camelTableName,
|
|
"primaryCacheKey": table.CacheKey[table.PrimaryKey.Name.Source()].DataKeyExpression,
|
|
"primaryKeyVariable": table.CacheKey[table.PrimaryKey.Name.Source()].Variable,
|
|
"lowerStartCamelObject": stringx.From(camelTableName).UnTitle(),
|
|
"originalPrimaryKey": table.PrimaryKey.Name.Source(),
|
|
"expressionValues": strings.Join(expressionValues, ", "),
|
|
})
|
|
if err != nil {
|
|
return "", nil
|
|
}
|
|
|
|
return output.String(), nil
|
|
}
|