Helius
2021-03-17 2bc7169b568195cfc5160bf88df6525e50afdc7c
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;
    }
}