|
|
|
@ -1,7 +1,7 @@ |
|
|
|
const nome = _req.getString("nome") ?? ""; |
|
|
|
const rg = _req.getString("rg") ?? ""; |
|
|
|
const cpf = _req.getString("cpf") ?? ""; |
|
|
|
const campos = _req.getString("campos").split(",") ?? ""; |
|
|
|
const nome = _req.getString("nome"); |
|
|
|
const rg = _req.getString("rg"); |
|
|
|
const cpf = _req.getString("cpf"); |
|
|
|
const campos = _req.getString("campos").split(","); |
|
|
|
|
|
|
|
const dbPacientes = _db.query(`
|
|
|
|
SELECT id, uid, nome, r_g, c_p_f, data_de_nascimento, endereco, telefone |
|
|
|
|