update ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java.
AjaxResult链式调用
This commit is contained in:
parent
c2a179e9dd
commit
2d7d137abd
|
@ -145,4 +145,16 @@ public class AjaxResult extends HashMap<String, Object>
|
||||||
{
|
{
|
||||||
return new AjaxResult(code, msg, null);
|
return new AjaxResult(code, msg, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 链式调用
|
||||||
|
*
|
||||||
|
* @param key 键
|
||||||
|
* @param value 内容
|
||||||
|
* @return 警告消息
|
||||||
|
*/
|
||||||
|
public AjaxResult put(String key, Object value) {
|
||||||
|
super.put(key, value);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue