当然还是推荐 使用hutool的工具包,自己写多费劲 hutool工具官网
使用 params 加入map
获取当前时间,两个时间夹住一个
LocalDateTime currentDataTime = LocalDateTime.now();
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String formatDateTime = currentDataTime.format(dateTimeFormatter);
Map<String,Object> beginAlarmTime = new HashMap<>();
beginAlarmTime.put("beginAlarmTime",formatDateTime+" 00:00:00");
beginAlarmTime.put("endAlarmTime",formatDateTime+" 23:59:59");