mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
db83843558
* rename snake、came method * new: generate model from data source * add change log md * update model doc * update doc * beauty code
20 lines
462 B
Go
20 lines
462 B
Go
package gen
|
|
|
|
import (
|
|
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/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
|
|
}
|