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
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package gen
|
|
|
|
import (
|
|
"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 genFindOne(table Table, withCache bool) (string, error) {
|
|
camel := table.Name.ToCamel()
|
|
text, err := util.LoadTemplate(category, findOneTemplateFile, template.FindOne)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
output, err := util.With("findOne").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"withCache": withCache,
|
|
"upperStartCamelObject": camel,
|
|
"lowerStartCamelObject": stringx.From(camel).UnTitle(),
|
|
"originalPrimaryKey": table.PrimaryKey.Name.Source(),
|
|
"lowerStartCamelPrimaryKey": stringx.From(table.PrimaryKey.Name.ToCamel()).UnTitle(),
|
|
"dataType": table.PrimaryKey.DataType,
|
|
"cacheKey": table.CacheKey[table.PrimaryKey.Name.Source()].KeyExpression,
|
|
"cacheKeyVariable": table.CacheKey[table.PrimaryKey.Name.Source()].Variable,
|
|
})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return output.String(), nil
|
|
}
|