package med.voll.api.pacientes;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/pacientes")
public class PacienteController {
@PostMapping
public void Cadastrar(@RequestBody DadosCadastroPaciente dadosPaciente){
System.out.println(dadosPaciente);
}
}
package med.voll.api.pacientes;
import med.voll.api.endereco.DadosEndereco;
public record DadosCadastroPaciente(String nome, String email, String telefone, String cpf, DadosEndereco endereco) {
}