fixes bug #AL-4506

master
valdevir 2024-09-12 19:23:30 -03:00
parent 580621d4a8
commit 42dfa93282
2 changed files with 82 additions and 82 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.105.2</version> <version>1.105.3</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 = "CONF_PRODUCTO_PARADA")
public class ConfiguracionProductoParada { public class ConfiguracionProductoParada {
@Id @Id
@Basic(optional = false) @Basic(optional = false)
@Column(name = "CONFIGURACION_PRODUCTO_PARADA_ID") @Column(name = "CONF_PRODUCTO_PARADA_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