xiaoyong931011
2022-07-07 1facfdc9361d888d72c959bac4d8fb05dcad02d7
src/main/java/com/xcong/farmer/cms/common/response/Result.java
@@ -16,7 +16,7 @@
    private static final long serialVersionUID = 1L;
    private static final int SUCCESS = 0;
    private static final int SUCCESS = 200;
    private static final int FAIL = -1;
@@ -38,6 +38,13 @@
        return result;
    }
    public static Result ok(Object data) {
        Result result = new Result();
        result.code = SUCCESS;
        result.data = data;
        return result;
    }
    public static Result ok(String msg, Object data) {
        Result result = new Result();
        result.code = SUCCESS;