fix(mongo): fix file name generation errors (#2479)

Before this, no matter what style is used, lowercase file names without underscores will be generated.
This commit is contained in:
foliet
2022-10-04 18:09:03 +08:00
committed by GitHub
parent 38a73d7fbe
commit b51339b69b

View File

@@ -97,7 +97,7 @@ func generateCustomModel(ctx *Context) error {
func generateTypes(ctx *Context) error {
for _, t := range ctx.Types {
fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"types")
fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"_types")
if err != nil {
return err
}