fixes bug#AL_2690
parent
3810e7093f
commit
b8fec5b798
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.6.4</version>
|
<version>1.6.5</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -36,7 +36,10 @@ import org.hibernate.annotations.Where;
|
||||||
@Entity
|
@Entity
|
||||||
@SequenceGenerator(name = "CLIENTE_SEQ", sequenceName = "CLIENTE_SEQ", allocationSize = 1)
|
@SequenceGenerator(name = "CLIENTE_SEQ", sequenceName = "CLIENTE_SEQ", allocationSize = 1)
|
||||||
@Table(name = "CLIENTE")
|
@Table(name = "CLIENTE")
|
||||||
|
|
||||||
public class Cliente implements Serializable {
|
public class Cliente implements Serializable {
|
||||||
|
@Column(name="ROWID", updatable=false, insertable=false)
|
||||||
|
private String rowId;
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@Id
|
@Id
|
||||||
|
@ -553,4 +556,14 @@ public class Cliente implements Serializable {
|
||||||
this.fecbloqueiopcd = fecbloqueiopcd;
|
this.fecbloqueiopcd = fecbloqueiopcd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getRowId() {
|
||||||
|
return rowId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRowId(String rowId) {
|
||||||
|
this.rowId = rowId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue