Merge pull request #7 from DeligentNezha/patch-1

Update ServiceExceptionUtil.java
This commit is contained in:
芋道源码 2020-04-17 04:02:27 -05:00 committed by GitHub
commit 233a441579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ public class ServiceExceptionUtil {
ServiceExceptionUtil.messages.put(code, message);
}
// TODO 芋艿可能不是目前最优解目前暂时这样
// TODO 芋艿可能不是目前最优解目前暂时这样 枚举实现接口
public static <T> CommonResult<T> error(Integer code) {
return CommonResult.error(code, messages.get(code));
}