Untitled
unknown
plain_text
2 years ago
1.6 kB
4
Indexable
Never
package com.foodapp.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "branch") public class Branch { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private String name; private String address; private Long contact; private String email; public Branch() { super(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public Long getContact() { return contact; } public void setContact(Long contact) { this.contact = contact; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } } package com.foodapp.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "menu") public class Menu { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; public Menu() { super(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } }