luqingyang
2023-11-02 93dd846b5023cc268b06e0a8e0fb6a04a4ff5fde
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);
    }
}