buhuazhen
10 天以前 b7eb6e87b4d88e5a419b64e3e3d0e5dc1be0f48f
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));
    }
    /**