Interface NoteServiceClient


@FeignClient(name="note") public interface NoteServiceClient
  • Method Summary

    Modifier and Type
    Method
    Description
    getNoteByPatientId(int patId)
     
  • Method Details

    • getNoteByPatientId

      @GetMapping("/api/note/{patId}") List<NoteDto> getNoteByPatientId(@PathVariable("patId") int patId)