Fixes Bug AL-4928

master
Luis Angel Espina Hernandez 2024-10-15 16:54:43 -04:00
parent 85437e474e
commit 6296bd23fb
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.118.0</version>
<version>1.118.1</version>
<distributionManagement>
<repository>

View File

@ -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