luqingyang
2023-10-30 b82ed8cbcc9e262f2bce2a662f8ce0d8c59b5d70
consum-base/src/main/java/com/consum/base/core/tools/SuperMap.java
@@ -7,6 +7,10 @@
public class SuperMap extends HashMap {
    public SuperMap(Map map){
        super(map);
    }
    public SuperMap putMap(Map map){
        super.putAll(map);
        return this;
@@ -23,6 +27,11 @@
        return value == null ? null : Long.valueOf(value);
    }
    public Integer getInteger(String key){
        String value = getString(key);
        return value == null ? null : Integer.valueOf(value);
    }
}