8 lines
322 B
Plaintext
8 lines
322 B
Plaintext
package com.healthcare.ohctech.dto;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDate;
|
|
|
|
public record ShiftStatusDetailsDto(Long id, LocalDate recordDate, Long shiftId, LocalDateTime startDateTime, LocalDateTime endDateTime, String currentStatus, Long ohcTypeId, Long modifiedBy, LocalDateTime lastModified) {
|
|
}
|