12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package gen
- import (
- "github.com/zeromicro/go-zero/tools/goctl/model/sql/template"
- "github.com/zeromicro/go-zero/tools/goctl/util"
- "github.com/zeromicro/go-zero/tools/goctl/util/pathx"
- )
- func genImports(table Table, withCache, timeImport bool) (string, error) {
- if withCache {
- text, err := pathx.LoadTemplate(category, importsTemplateFile, template.Imports)
- if err != nil {
- return "", err
- }
- buffer, err := util.With("import").Parse(text).Execute(map[string]any{
- "time": timeImport,
- "containsPQ": table.ContainsPQ,
- "data": table,
- })
- if err != nil {
- return "", err
- }
- return buffer.String(), nil
- }
- text, err := pathx.LoadTemplate(category, importsWithNoCacheTemplateFile, template.ImportsNoCache)
- if err != nil {
- return "", err
- }
- buffer, err := util.With("import").Parse(text).Execute(map[string]any{
- "time": timeImport,
- "containsPQ": table.ContainsPQ,
- "data": table,
- })
- if err != nil {
- return "", err
- }
- return buffer.String(), nil
- }
|