|
@@ -7,7 +7,7 @@ import java.math.BigDecimal;
|
|
|
|
|
|
public class NeoUtil {
|
|
|
|
|
|
- public static NodeNeoDTO updateNodeInfo(String name, BigDecimal min, BigDecimal max, String unit) {
|
|
|
+ public static NodeNeoDTO updateNodeInfo(String name, BigDecimal min, BigDecimal max, String unit, Integer range) {
|
|
|
NodeNeoDTO nodeNeoDTO = new NodeNeoDTO();
|
|
|
|
|
|
name = (null==name)?"":name;
|
|
@@ -24,6 +24,8 @@ public class NeoUtil {
|
|
|
unit = (null==unit)?"":unit;
|
|
|
nodeNeoDTO.setUnit(unit);
|
|
|
|
|
|
+ nodeNeoDTO.setValType(range);
|
|
|
+
|
|
|
return nodeNeoDTO;
|
|
|
}
|
|
|
|