杨凯
2023-10-18 21f14947f2a3d3e5a034f383cd1c87e7d42dbc8d
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);
    }
}