xiaoyong931011
2021-11-24 aa0e95612c83cc03b8c815503f2acb5e1874647a
src/main/java/com/xcong/excoin/common/response/Result.java
@@ -70,4 +70,11 @@
        result.msg = msg;
        return result;
    }
    public static Result timeOut(String msg) {
        Result result = new Result();
        result.code = -3;
        result.msg = msg;
        return result;
    }
}