Merge branch 'master' into AL-2895

master
Lucas 2023-07-05 22:22:46 -03:00
commit 5538817117
1 changed files with 13 additions and 0 deletions

View File

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