Interface NoteFeignClient
@FeignClient("notes")
public interface NoteFeignClient
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<SuccessResponse<List<NoteDto>>> getNoteByPatientId
(Long patId, String correlationId)
-
Method Details
-
getNoteByPatientId
@GetMapping("/notes/{patId}") org.springframework.http.ResponseEntity<SuccessResponse<List<NoteDto>>> getNoteByPatientId(@PathVariable Long patId, @RequestHeader("medilabo-solutions-correlation-id") String correlationId)
-