Commit 88b62f9b authored by wujiang's avatar wujiang

修改排序

parent 9b7c2b99
...@@ -191,9 +191,9 @@ public class TdInfoQueryController extends BaseController { ...@@ -191,9 +191,9 @@ public class TdInfoQueryController extends BaseController {
public static String convert(String camelCase) { public static String convert(String camelCase) {
StringBuilder result = new StringBuilder(); StringBuilder result = new StringBuilder();
if (camelCase.equals("analysisTime")) { // if (camelCase.equals("analysisTime")) {
return "ts"; // return "ts";
} // }
for (int i = 0; i < camelCase.length(); i++) { for (int i = 0; i < camelCase.length(); i++) {
char currentChar = camelCase.charAt(i); char currentChar = camelCase.charAt(i);
if (Character.isUpperCase(currentChar)) { if (Character.isUpperCase(currentChar)) {
......
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