|
@@ -738,7 +738,7 @@ public class IotStaticController {
|
|
|
return Long.parseLong(value);
|
|
|
} else {
|
|
|
// System.err.println("total字段格式错误: " + totalObj);
|
|
|
- String value = String.valueOf(totalObj).replaceAll(".00","");
|
|
|
+ String value = String.valueOf(totalObj).replace(".00","");
|
|
|
return Long.parseLong(value);
|
|
|
}
|
|
|
} catch (Exception e) {
|