Merge pull request 'fixes bug#AL_2690' (!72) from AL_2690 into master
Reviewed-on: adm/ModelWeb#72 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
d6c972ddc2
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.6.4</version>
|
||||
<version>1.6.5</version>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>rj-releases</id>
|
||||
|
|
|
@ -36,7 +36,10 @@ import org.hibernate.annotations.Where;
|
|||
@Entity
|
||||
@SequenceGenerator(name = "CLIENTE_SEQ", sequenceName = "CLIENTE_SEQ", allocationSize = 1)
|
||||
@Table(name = "CLIENTE")
|
||||
|
||||
public class Cliente implements Serializable {
|
||||
@Column(name="ROWID", updatable=false, insertable=false)
|
||||
private String rowId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Id
|
||||
|
@ -553,4 +556,14 @@ public class Cliente implements Serializable {
|
|||
this.fecbloqueiopcd = fecbloqueiopcd;
|
||||
}
|
||||
|
||||
public String getRowId() {
|
||||
return rowId;
|
||||
}
|
||||
|
||||
public void setRowId(String rowId) {
|
||||
this.rowId = rowId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue