Commit 4fa4d5da by jinxin

随机字符串生成算法

parent abb20b26
...@@ -51,7 +51,9 @@ public class SignatureGetterUtil { ...@@ -51,7 +51,9 @@ public class SignatureGetterUtil {
for (Object item : (List<?>) v) { for (Object item : (List<?>) v) {
json2List((Map<String, Object>) item, paramList); json2List((Map<String, Object>) item, paramList);
} }
} else { } else if (v instanceof Map){
json2List((Map)v,paramList);
}else {
paramList.add(k + "=" + v); paramList.add(k + "=" + v);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment