Merge pull request 'FIx Bug#AL-4928 Correccion a nombre de la tabla y columna ID' (!301) from AL-4928 into master

Reviewed-on: adm/ModelWeb#301
Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>
master
luis.espina 2024-10-22 20:07:19 +00:00
commit 8a7d104761
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -17,12 +17,12 @@ import javax.persistence.TemporalType;
@Entity @Entity
@SequenceGenerator(name = "CONFIG_PRODUCTO_PARADA_SEQ", sequenceName = "CONFIG_PRODUCTO_PARADA_SEQ", allocationSize = 1) @SequenceGenerator(name = "CONFIG_PRODUCTO_PARADA_SEQ", sequenceName = "CONFIG_PRODUCTO_PARADA_SEQ", allocationSize = 1)
@Table(name = "CONFIGURACION_PRODUCTO_PARADA") @Table(name = "CONFIG_PRODUCTO_PARADA")
public class ConfiguracionProductoParada { public class ConfiguracionProductoParada {
@Id @Id
@Basic(optional = false) @Basic(optional = false)
@Column(name = "CONF_PRODUCTO_PARADA_ID") @Column(name = "CONFIGPRODUCTOPARADA_ID")
@GeneratedValue(strategy = GenerationType.AUTO, generator = "CONFIG_PRODUCTO_PARADA_SEQ") @GeneratedValue(strategy = GenerationType.AUTO, generator = "CONFIG_PRODUCTO_PARADA_SEQ")
private Long configuracionProductoParadaId; private Long configuracionProductoParadaId;
@ManyToOne @ManyToOne