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; + } + + + }