... | ... | @@ -815,3 +815,76 @@ Sem retorno de json |
|
|
<p>Sem retorno de JSON</p>
|
|
|
<p><b>Atenção:</b> apenas o status é alterado para <pre>false</pre>.</p>
|
|
|
</details>
|
|
|
|
|
|
9. **Gasto energético:**
|
|
|
|
|
|
Um registro de gasto energético está associado a um atendimento nutricional.
|
|
|
Assim, nenhum registro de gasto energético tem ID próprio: seu ID é o ID do
|
|
|
atendimento relacionado.
|
|
|
|
|
|
* <details>
|
|
|
<summary><b>Cadastrar</b> POST api/gasto_energetico</summary>
|
|
|
<pre>
|
|
|
{
|
|
|
"idAtendimento": 4,
|
|
|
"fator": "SEDENTARIO",
|
|
|
"geb": 1.9,
|
|
|
"get": 3
|
|
|
}
|
|
|
</pre>
|
|
|
</details>
|
|
|
|
|
|
* <details>
|
|
|
<summary><b>Alterar</b> PUT api/gasto_energetico/update</summary>
|
|
|
<pre>
|
|
|
{
|
|
|
"idAtendimento": 4,
|
|
|
"fator": "MUITOINTENSO",
|
|
|
"geb": 1,
|
|
|
"get": 2
|
|
|
}
|
|
|
</pre>
|
|
|
</details>
|
|
|
|
|
|
* <details>
|
|
|
<summary><b>Buscar Por ID</b> GET api/gasto_energetico/{id}</summary>
|
|
|
<pre>
|
|
|
{
|
|
|
"idAtendimento": 4,
|
|
|
"fator": "MUITOINTENSO",
|
|
|
"geb": 1,
|
|
|
"get": 2,
|
|
|
"status": true
|
|
|
}
|
|
|
</pre>
|
|
|
</details>
|
|
|
|
|
|
* <details>
|
|
|
<summary><b>Buscar Todos</b> GET api/gasto_energetico</summary>
|
|
|
<pre>
|
|
|
{
|
|
|
"Gastos": [
|
|
|
{
|
|
|
"idAtendimento": 4,
|
|
|
"fator": "MUITOINTENSO",
|
|
|
"geb": 1,
|
|
|
"get": 2,
|
|
|
"status": true
|
|
|
},
|
|
|
{
|
|
|
"idAtendimento": 2,
|
|
|
"fator": "BAIXO",
|
|
|
"geb": 3.9,
|
|
|
"get": 7.8,
|
|
|
"status": false
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
</pre>
|
|
|
</details>
|
|
|
|
|
|
* <details>
|
|
|
<summary><b>Deletar Por ID</b> DELETE api/gasto_energetico/{id}</summary>
|
|
|
<p>Sem retorno de JSON.</p>
|
|
|
<p><b>Atenção:</b> apenas o status é alterado para <pre>false</pre>.</p>
|
|
|
</details> |