haoyahui
2023-11-11 332c012e7336f2996c4fe5c8c110d00713c1bde2
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);
    }
}