Merge branch 'master' into AL-2895
commit
5538817117
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue