Use @Transient annotation for field you are not going to store in DB:
@Transient
public String getStatus() {
return status;
}
or:
@Transient
private String status;
Use @Transient annotation for field you are not going to store in DB:
@Transient
public String getStatus() {
return status;
}
or:
@Transient
private String status;