This annotation specifies the primary table for the annotated
entity. Additional tables may be specified using {@link SecondaryTable}
or {@link SecondaryTables} annotation.
If no Table annotation is specified for an entity
class, the default values apply.
Example:
@Entity
@Table(name="CUST", schema="RECORDS")
public class Customer { ... }
|