Commit bbf8fe8c by 丁伟峰

for test

1 parent aa4deb43
......@@ -54,7 +54,11 @@ public class WorkbenchServiceImpl implements WorkbenchService {
Page<?> changes;
String levelType = reqDTO.getLevelType();
String levelValue = reqDTO.getLevelValue();
log.info("====== {}", reqDTO.getDate());
LocalDate date = LocalDate.parse(reqDTO.getDate(), DateTimeFormatter.ofPattern(PATTERN_DATE));
log.info("====== {}", date);
if ("cluster".equals(levelType)) {
changes = orderEventDao.findAllByClusterId(levelValue, date, pageable);
} else if ("branch".equals(levelType)) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!