T139 history json being published

This commit is contained in:
2021-03-17 14:20:22 +01:00
parent e270f05385
commit a9ce408b80
6 changed files with 5 additions and 6 deletions

View File

@@ -37,8 +37,8 @@ public class EventController {
public ResponseEntity getHistory(@RequestBody(required = false) EventRequestDto event){
event = EventRequestDto.builder()
.localDateTimeFrom(LocalDateTime.of(2021, 3, 3, 10, 1))
.localDateTimeTo(LocalDateTime.of(2021, 3, 5, 19, 40))
.clientUUID(UUID.fromString("bd135778-e256-4a0f-b4fc-c8dbdfbb5a11"))
.localDateTimeTo(LocalDateTime.of(2021, 3, 30, 19, 40))
.clientUUID(UUID.fromString("68f98c04-403c-4344-bed2-1db779a15ead"))
.build();
return new ResponseEntity(service.getEventsByDateTimeAndBusinessKeys(event), HttpStatus.OK);
}