Commit 3a4840de by liuyu

2023/10/19 模板搜索和更新时间bug修复

parent cf2a23dd
...@@ -221,8 +221,8 @@ public class TemplateTitleServiceImpl implements TemplateTitleService { ...@@ -221,8 +221,8 @@ public class TemplateTitleServiceImpl implements TemplateTitleService {
// 表示累计模板 // 表示累计模板
if (Objects.nonNull(daySum)) { if (Objects.nonNull(daySum)) {
templateTitleVo.accSum(daySum); templateTitleVo.accSum(daySum);
}
templateTitleVo.setUpdateTime(new Date()); templateTitleVo.setUpdateTime(new Date());
}
redissonUtil.setMapValue(mapKey, title, JSONObject.toJSONString(templateTitleVo)); redissonUtil.setMapValue(mapKey, title, JSONObject.toJSONString(templateTitleVo));
log.info("模板更新,id:{},标注总量:{},标注天级:{},标签:{}", templateTitleVo.getId(), templateTitleVo.getMarkSum(), templateTitleVo.getDaySum(), templateTitleVo.getMtag()); log.info("模板更新,id:{},标注总量:{},标注天级:{},标签:{}", templateTitleVo.getId(), templateTitleVo.getMarkSum(), templateTitleVo.getDaySum(), templateTitleVo.getMtag());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment