|
@@ -611,7 +611,7 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
|
|
|
String height = node.get("height").asText();
|
|
|
if (StrUtil.isNotBlank(height)) {
|
|
|
for (AdmSpace admSpace : spaces) {
|
|
|
- admSpace.setHeight(Float.parseFloat(height));
|
|
|
+ admSpace.setHeight(Double.parseDouble(height));
|
|
|
resultList.add(admSpace);
|
|
|
}
|
|
|
}
|