From 6296bd23fb0ff022dba5b68e4013c52cf8168089 Mon Sep 17 00:00:00 2001 From: Luis Angel Espina Hernandez Date: Tue, 15 Oct 2024 16:54:43 -0400 Subject: [PATCH] Fixes Bug AL-4928 --- pom.xml | 2 +- .../ventaboletos/entidad/ConfiguracionProductoParada.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5b70c4baf..c299603fb 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.118.0 + 1.118.1 diff --git a/src/com/rjconsultores/ventaboletos/entidad/ConfiguracionProductoParada.java b/src/com/rjconsultores/ventaboletos/entidad/ConfiguracionProductoParada.java index 4159ca9eb..4843063d3 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/ConfiguracionProductoParada.java +++ b/src/com/rjconsultores/ventaboletos/entidad/ConfiguracionProductoParada.java @@ -17,12 +17,12 @@ import javax.persistence.TemporalType; @Entity @SequenceGenerator(name = "CONFIG_PRODUCTO_PARADA_SEQ", sequenceName = "CONFIG_PRODUCTO_PARADA_SEQ", allocationSize = 1) -@Table(name = "CONFIG_PRODUCTO_PARADA") +@Table(name = "CONFIGURACION_PRODUCTO_PARADA") public class ConfiguracionProductoParada { @Id @Basic(optional = false) - @Column(name = "CONFIGPRODUCTOPARADA_ID") + @Column(name = "CONF_PRODUCTO_PARADA_ID") @GeneratedValue(strategy = GenerationType.AUTO, generator = "CONFIG_PRODUCTO_PARADA_SEQ") private Long configuracionProductoParadaId; @ManyToOne