gongchunyi
14 小时以前 dfe6c610fe4a6b2c99dc9ee66ef8f6fe1c89ceda
src/main/java/com/ruoyi/framework/web/domain/AjaxResult.java
@@ -177,7 +177,17 @@
     */
    public boolean isSuccess()
    {
        return !isError();
        return Objects.equals(HttpStatus.SUCCESS, this.get(CODE_TAG));
    }
    /**
     * 是否为警告消息
     *
     * @return 结果
     */
    public boolean isWarn()
    {
        return Objects.equals(HttpStatus.WARN, this.get(CODE_TAG));
    }
    /**