Merge pull request 'fixes bug #AL-4506' (!272) from AL-4506 into master
Reviewed-on: adm/ModelWeb#272 Reviewed-by: wallace <wallace@rjconsultores.com.br>master
commit
7633e64cd0
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue