Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Entity
- public class Feedback {
- @Id
- @GeneratedValue
- private int id;
- private String message;
- @ManyToOne
- @JoinColumn(name = "product_id")
- @JsonIgnore
- private Product product;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement