update ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java.

AjaxResult链式调用
This commit is contained in:
abbfun 2021-10-22 03:09:54 +00:00 committed by Gitee
parent c2a179e9dd
commit 2d7d137abd
1 changed files with 12 additions and 0 deletions

View File

@ -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;
}
} }