chore: update
Java CI with Maven / test (pull_request) Failing after 2m45s
Java CI with Maven / build (pull_request) Successful in 32m14s

This commit is contained in:
TakahashiNg
2026-05-15 04:07:33 +00:00
parent e9ef5776ff
commit dc0497b6b7
@@ -29,10 +29,11 @@ public class ShiftRegistrationEntity extends BaseEntity {
ShiftEntity registratingShift
) {
return list(
"staffId = ?1 and shift.startTime < ?2 and shift.endTime > ?3",
"staffId = ?1 and shift.startTime < ?2 and shift.endTime > ?3 and shift.date = date",
staffId,
registratingShift.endTime,
registratingShift.startTime
registratingShift.startTime,
registratingShift.date
);
}
}