Merge branch 'feature/v1.0.0' of gitlab.zhidaoauto.com:ecos/yycp-service/Launcher into feature/v1.0.0

This commit is contained in:
wangcongtao
2020-01-13 21:40:55 +08:00
24 changed files with 298 additions and 143 deletions

View File

@@ -36,6 +36,7 @@ public class GsonUtil {
try {
return getGson().toJson(object);
} catch ( Exception var2) {
var2.printStackTrace();
return null;
}
}
@@ -48,6 +49,7 @@ public class GsonUtil {
try {
return getGson().fromJson(json, klass);
} catch ( Exception var3) {
var3.printStackTrace();
return null;
}
}