se hacen correciones al servicio de guardar pdf y editar, además se agrega la…

se hacen correciones al servicio de guardar pdf y editar, además se agrega la tabla y los servicios de usuario
parent 63489ad0
......@@ -23,8 +23,8 @@ public class UzyTUsuarioController {
IServiceUzyTUsuario serviceUzyTUsuario;
@GetMapping("/exampleFindId/{id}")
public ResponseEntity<ModelUzyTUsuario> ListarPorID(@PathVariable String id) {
return new ResponseEntity<>(serviceUzyTUsuario.ListarPorID(Long.valueOf(id)), HttpStatus.OK);
public ResponseEntity<ModelUzyTUsuario> ListarPorID(@PathVariable Long id) {
return new ResponseEntity<>(serviceUzyTUsuario.ListarPorID(id), HttpStatus.OK);
}
@GetMapping("/getAll")
......@@ -40,14 +40,14 @@ public class UzyTUsuarioController {
@PutMapping("/editar/{id}")
public ResponseEntity<ModelUzyTUsuario> editar(@PathVariable String id, @RequestBody ModelUzyTUsuario modelUzyTUsuario) {
return new ResponseEntity<>(serviceUzyTUsuario.editar(Long.valueOf(id), modelUzyTUsuario), HttpStatus.OK);
public ResponseEntity<ModelUzyTUsuario> editar(@PathVariable Long id, @RequestBody ModelUzyTUsuario modelUzyTUsuario) {
return new ResponseEntity<>(serviceUzyTUsuario.editar(id, modelUzyTUsuario), HttpStatus.OK);
}
@DeleteMapping("/eliminar/{id}")
public ResponseEntity<Void> eliminar(@PathVariable String id) {
serviceUzyTUsuario.eliminar(Long.valueOf(id));
public ResponseEntity<Void> eliminar(@PathVariable Long id) {
serviceUzyTUsuario.eliminar(id);
return ResponseEntity.ok().build();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment