1. 123后缀处理 2. 修复缓存时间戳格式问题

This commit is contained in:
qaiu
2024-09-18 15:41:56 +08:00
parent 6c3433595f
commit b8340949d5
4 changed files with 9 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ public class CacheServiceImpl implements CacheService {
}
private String generateDate(Long ts) {
return DateFormatUtils.format(new Date(ts), "yyyy-MM-dd hh:mm:ss");
return DateFormatUtils.format(new Date(ts), "yyyy-MM-dd HH:mm:ss");
}
@Override