Class EstimacionConsumoController
java.lang.Object
com.deusto.coffeestack.controller.EstimacionConsumoController
@RestController
@RequestMapping("/api/insumos")
public class EstimacionConsumoController
extends Object
Endpoint para consultar la estimación de consumo diario futuro de un insumo.
-
Constructor Summary
ConstructorsConstructorDescriptionEstimacionConsumoController(EstimacionConsumoService estimacionConsumoService) -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<EstimacionConsumoResponse>
-
Constructor Details
-
EstimacionConsumoController
-
-
Method Details
-
estimar
@GetMapping("/{id}/estimacion-consumo") @PreAuthorize("isAuthenticated()") public org.springframework.http.ResponseEntity<EstimacionConsumoResponse> estimar(@PathVariable("id") Long id, @RequestParam(defaultValue="30") int ventana, @RequestParam(defaultValue="7") int horizonte)
-