go-zero/tools/goctl/model/sql/gen/new.go
2020-10-15 16:36:49 +08:00

20 lines
457 B
Go

package gen
import (
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
"github.com/tal-tech/go-zero/tools/goctl/templatex"
)
func genNew(table Table, withCache bool) (string, error) {
output, err := templatex.With("new").
Parse(template.New).
Execute(map[string]interface{}{
"withCache": withCache,
"upperStartCamelObject": table.Name.ToCamel(),
})
if err != nil {
return "", err
}
return output.String(), nil
}