diff --git a/wrapper/json.go b/wrapper/json.go index cf93259..edc0aa3 100644 --- a/wrapper/json.go +++ b/wrapper/json.go @@ -75,7 +75,6 @@ func (oj *ownJson) Marshal(marshalType string) ([]byte, error) { // generateStructField 递归解析 func (oj *ownJson) generateStructField(rootPath string, currentName string, currentResult gjson.Result) { structPath := oj.getPath(rootPath, currentName) - fmt.Println(structPath) if currentResult.IsBool() { // bool类型 oj.structBuilder.AddField(structPath, "", true, "", false)