Se agregan dos campos en ModelUzyTavInstProy y DtoUzyTavInstProy

parent bdfa2cf5
......@@ -36,5 +36,9 @@ public class DtoUzyTavInstProy {
private Integer uzytavinstproy_indirectos;
@Size(max = 150)
private String uzytavinstproy_desc_benefic;
@Positive(message = "El campo uzytavinstproy_DIRECTOS debe ser un número positivo")
private Integer uzytavinstproy_DIRECTOS;
@Positive(message = "El campo uzytavinstproy_TOTAL debe ser un número positivo")
private Integer uzytavinstproy_TOTAL;
}
......@@ -73,6 +73,12 @@ public class ModelUzyTavInstProy {
@Column(name = "uzytavinstproy_desc_benefic", length = 150)
private String uzytavinstproy_desc_benefic;
@Column(name = "uzytavinstproy_DIRECTOS")
private Integer uzytavinstproy_DIRECTOS;
@Column(name = "uzytavinstproy_TOTAL")
private Integer uzytavinstproy_TOTAL;
//RELACIÓN CON uzytavinstproy- TABLA HIJA
@JsonIgnore
......
......@@ -118,6 +118,12 @@ public class ServiceUzyTavInstProy implements IServiceUzyTavInstProy {
if (dtoUzyTavInstProy.getUzytavinstproy_desc_benefic() != null) {
entity.setUzytavinstproy_desc_benefic(dtoUzyTavInstProy.getUzytavinstproy_desc_benefic());
}
if (dtoUzyTavInstProy.getUzytavinstproy_DIRECTOS() != null) {
entity.setUzytavinstproy_DIRECTOS(dtoUzyTavInstProy.getUzytavinstproy_DIRECTOS());
}
if (dtoUzyTavInstProy.getUzytavinstproy_TOTAL() != null) {
entity.setUzytavinstproy_TOTAL(dtoUzyTavInstProy.getUzytavinstproy_TOTAL());
}
ModelUzyTavInstProy updatedEntity = daoUzyTavInstProy.save(entity);
return mapper.entityToDto(updatedEntity);
} else {
......
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