Se realiza una corrección en el el modelo de ModelUzyTPerfil

parent 95b179fc
package ec.edu.espe.movilidad.MovilidadWS.Dto;
import lombok.Data;
import org.springframework.web.multipart.MultipartFile;
import java.util.Date;
@Data
public class DtoUzyTPerfil {
private long uzytperfil_id;
private Long uzytperfil_id;
private String uzytperfil_nombre;
}
......@@ -17,11 +17,11 @@ public class ModelUzyTPerfil {
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "uzytperfil_seq")
@SequenceGenerator(name = "uzytperfil_seq", sequenceName = "SEQ_UZYTPERFIL", allocationSize = 1)
@Column(name = "UZYTPERFIL_ID", nullable = false)
private Long id;
private Long uzytperfil_id;
@Size(max = 50)
@Column(name = "UZYTPERFIL_NOMBRE", length = 50)
private String uzytperfilNombre;
private String uzytperfil_nombre;
@OneToMany(mappedBy = "uzytperfil")
private Set<ModelUzyTPerfilMenu> uzytperfilmenus = new LinkedHashSet<>();
......
......@@ -46,7 +46,7 @@ public class ServiceUzyTPerfil implements IServiceUzyTPerfil {
try {
ModelUzyTPerfil entity = daoUzyTPerfil.findById(id)
.orElseThrow(() -> new ResourceNotFoundException("No se encontró el registro con ID: " + id));
entity.setUzytperfilNombre(dtoUzyTPerfil.getUzytperfil_nombre());
entity.setUzytperfil_nombre(dtoUzyTPerfil.getUzytperfil_nombre());
ModelUzyTPerfil updatedEntity = daoUzyTPerfil.save(entity);
return mapper.entityToDto(updatedEntity);
} catch (Exception e) {
......
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