xiaoyong931011
2021-01-18 dd48d2c05e7ba09b11a3f7ccffd43c1b65ab1a9a
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;
    }
}