zainali5120
2020-11-06 5a32f4f975a9eeb04c7bb46b6daa311fde87f90f
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;
    }
}