Good Morning / Afternoon / Evening Personal! in a scenario where a bd table must have a name and concatenated dates like that would get with hibernate since the base name is annotated in the model.
As it is:
@Entity
@Table(name="nome_da_tabela")
As I'm imagining:
@Entity
@Table(name="nome_da_tabela"+data)
I would like to know if it is possible to do this or even something similar, thank you already.