会议定时任务、修改安卓业务逻辑-20250506

This commit is contained in:
myxz 2025-05-06 14:50:22 +08:00
parent 0339b3725b
commit 884a6cfe6e
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
DATE_FORMAT( start_time, '%Y-%m-%d %H:%i:%S' ) >
DATE_FORMAT( NOW(), '%Y-%m-%d %H:%i:%S' )))
and room_content_id =#{id}
and `stauts` = 1
and (`stauts` = 1 OR `stauts` = 2)
ORDER BY start_time ASC
</select>

View File

@ -22,7 +22,7 @@ public class MeetingStatusTask {
log.info("执行开会结束状态任务");
Reservation reservation = new Reservation();
reservation.setStatusValue(2);
reservation.setStatusValue(3);
List<Reservation> reservations = iReservationService.selectReservationList(reservation);
for (Reservation reservation1 : reservations) {
Date endDate = reservation1.getEndDate();