瀏覽代碼

fix(goctl): kotlin code generation (#1632)

Signed-off-by: Ziyi Zhang <soasurs@gmail.com>
Ziyi Zhang 3 年之前
父節點
當前提交
209ffb934b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/goctl/api/ktgen/gen.go

+ 1 - 1
tools/goctl/api/ktgen/gen.go

@@ -80,7 +80,7 @@ import com.google.gson.Gson
 object {{with .Info}}{{.Title}}{{end}}{
 	{{range .Types}}
 	data class {{.Name}}({{$length := (len .Members)}}{{range $i,$item := .Members}}
-		val {{with $item}}{{lowCamelCase .Name}}: {{parseType .Type}}{{end}}{{if ne $i (add $length -1)}},{{end}}{{end}}
+		val {{with $item}}{{lowCamelCase .Name}}: {{parseType .Type.Name}}{{end}}{{if ne $i (add $length -1)}},{{end}}{{end}}
 	){{end}}
 	{{with .Service}}
 	{{range .Routes}}suspend fun {{routeToFuncName .Method .Path}}({{with .RequestType}}{{if ne .Name ""}}