diff --git a/pom.xml b/pom.xml index 87c32a507..f474240da 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.6.4 + 1.6.5 rj-releases diff --git a/src/com/rjconsultores/ventaboletos/entidad/Cliente.java b/src/com/rjconsultores/ventaboletos/entidad/Cliente.java index 1332c62e6..b5b9fc29f 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Cliente.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Cliente.java @@ -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; + } + + + }