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

20 lines
466 B
Go
Raw Normal View History

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