mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
c9494c8bc7
* model support globbing patterns * optimize model * optimize model * format code
27 lines
605 B
Go
27 lines
605 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"
|
|
)
|
|
|
|
func genNew(table Table, withCache bool) (string, error) {
|
|
text, err := util.LoadTemplate(category, modelNewTemplateFile, template.New)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
output, err := util.With("new").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"table": table.Name.Source(),
|
|
"withCache": withCache,
|
|
"upperStartCamelObject": table.Name.ToCamel(),
|
|
})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return output.String(), nil
|
|
}
|