ohctechv3/.svn/pristine/b9/b9b3d7356f085b889dfa9e13904efa74ed5dfec2.svn-base
2024-10-28 15:03:36 +05:30

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) {
}