go-zero/tools/goctl/model/sql/gen/new.go

20 lines
457 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package gen
import (
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
2020-10-15 16:36:49 +08:00
"github.com/tal-tech/go-zero/tools/goctl/templatex"
2020-07-29 17:11:41 +08:00
)
func genNew(table Table, withCache bool) (string, error) {
2020-10-15 16:36:49 +08:00
output, err := templatex.With("new").
Parse(template.New).
Execute(map[string]interface{}{
"withCache": withCache,
"upperStartCamelObject": table.Name.ToCamel(),
})
2020-07-29 17:11:41 +08:00
if err != nil {
return "", err
}
return output.String(), nil
2020-07-29 17:11:41 +08:00
}