From b8fec5b798579b13db57c5568b89ea9b1c9677ae Mon Sep 17 00:00:00 2001 From: Aristides Date: Wed, 5 Jul 2023 15:30:22 -0300 Subject: [PATCH] fixes bug#AL_2690 --- pom.xml | 2 +- .../rjconsultores/ventaboletos/entidad/Cliente.java | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) 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; + } + + + }