1. 修复 refund/index.vue 的报错

2. 优化 DateUtils 的工具类的方法命名
This commit is contained in:
YunaiV
2022-11-10 12:55:26 +08:00
parent 423256c0db
commit d3b6a0ca69
5 changed files with 26 additions and 14 deletions

View File

@ -66,7 +66,7 @@ public class ErrorCodeLoaderImpl implements ErrorCodeLoader {
// 写入到错误码的缓存
putErrorCode(errorCodeRespDTO.getCode(), errorCodeRespDTO.getMessage());
// 记录下更新时间,方便增量更新
maxUpdateTime = DateUtils.maxLocalDateTime(maxUpdateTime, errorCodeRespDTO.getUpdateTime());
maxUpdateTime = DateUtils.max(maxUpdateTime, errorCodeRespDTO.getUpdateTime());
});
}