fuliqi
2024-06-18 c46f49af9e766aed0ba583fce0efab98ebcdf76c
src/main/java/com/ycl/jxkg/base/Result.java
@@ -83,6 +83,19 @@
    }
    /**
     * Ok rest response.
     *
     * @return the rest response
     */
    public static Result ok(String msg) {
        SystemCode systemCode = SystemCode.OK;
        Result restResponse = new Result();
        restResponse.put("code", systemCode.getCode());
        restResponse.put("message", msg);
        return restResponse;
    }
    /**
     * Gets code.
     *
     * @return the code