Commit eb909335 authored by 曲欣红's avatar 曲欣红

Merge branch 'master' of http://gitlab.egolm.com/key/common

parents e5f0da3f 99c11b6b
......@@ -30,6 +30,11 @@ public class Rjx extends LinkedHashMap<String, Object> {
private Rjx() {}
public Rjx loadMap(Map<String, Object> map) {
this.putAll(map);
return this;
}
public Rjx set(String key, Object value) {
put(key, value);
return this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment