You forgot the @Entity
annotation on the Sales
class.
Instead of this:
public class Sales {
...
do this:
@Entity
@Table(name="Sales")
public class Sales {
...
You forgot the @Entity
annotation on the Sales
class.
Instead of this:
public class Sales {
...
do this:
@Entity
@Table(name="Sales")
public class Sales {
...