hibernacja mapowanie wielu schematów

Mam projekt Hibernate i wiele podmiotów. Każda jednostka musi połączyć się z kilkoma bazami danych. (table1, table2, table3, table4) ten sam schemat.

Czy można to osiągnąć? czy muszę utworzyć osobną jednostkę dla każdego z nich?

Moja istota wygląda tak

@Entity
public class table1{
     @Id
     @Column(name="name")
     private String name;

     @Column(name="age")
     private String age;

     //getters setters
}

questionAnswers(1)

yourAnswerToTheQuestion